From a0fb2cf680f71cb356caf1cadc4a33f40b8e1c85 Mon Sep 17 00:00:00 2001 From: csuzhang Date: Fri, 25 Feb 2022 11:23:03 +0800 Subject: [PATCH] format the config_test.go --- exporters/otlp/internal/config_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/exporters/otlp/internal/config_test.go b/exporters/otlp/internal/config_test.go index 064ce6331cb..56dd5885255 100644 --- a/exporters/otlp/internal/config_test.go +++ b/exporters/otlp/internal/config_test.go @@ -53,7 +53,7 @@ func TestCleanPath(t *testing.T) { { name: "spaces trimmed", args: args{ - URLPath: " /dir", + URLPath: " /dir", }, want: "/dir", }, @@ -68,7 +68,7 @@ func TestCleanPath(t *testing.T) { { name: "make absolute", args: args{ - URLPath: "dir/a", + URLPath: "dir/a", }, want: "/dir/a", },