diff options
author | Nick Thomas <nick@gitlab.com> | 2021-09-14 14:42:33 +0100 |
---|---|---|
committer | Nick Thomas <nick@gitlab.com> | 2021-09-14 14:42:33 +0100 |
commit | f827abcee3361e9ce93058c8bf8124a048d59c09 (patch) | |
tree | 344a5243802a7df0b18e0e4ecb66d7198e213bd2 /internal/config/config_test.go | |
parent | 515bfeb98c87e04d36650939aa99e48f28555f85 (diff) | |
parent | 943b182d2c180d6dc3a967cb50e2966372cd710d (diff) | |
download | gitlab-shell-f827abcee3361e9ce93058c8bf8124a048d59c09.tar.gz |
Merge branch 'main' into refactor/cmd
Diffstat (limited to 'internal/config/config_test.go')
-rw-r--r-- | internal/config/config_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/config/config_test.go b/internal/config/config_test.go index 699a261..78b2ed4 100644 --- a/internal/config/config_test.go +++ b/internal/config/config_test.go @@ -32,7 +32,7 @@ func TestHttpClient(t *testing.T) { client, err := config.HttpClient() require.NoError(t, err) - _, err = client.Get("http://host.com/path") + _, err = client.Get(url) require.NoError(t, err) ms, err := prometheus.DefaultGatherer.Gather() |