From b2997307ea232a1b91565bf2b5f7989057daff60 Mon Sep 17 00:00:00 2001 From: Piotr Fus Date: Wed, 23 Oct 2024 07:08:05 +0200 Subject: [PATCH] NO-SNOW Enable client configuration tests (#1225) --- connection_configuration_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/connection_configuration_test.go b/connection_configuration_test.go index 18612ddbf..bba678b13 100644 --- a/connection_configuration_test.go +++ b/connection_configuration_test.go @@ -57,7 +57,7 @@ func TestTokenFilePermission(t *testing.T) { } } -func TestloadConnectionConfig_Default(t *testing.T) { +func TestLoadConnectionConfigForStandardAuth(t *testing.T) { err := os.Chmod("./test_data/connections.toml", 0600) assertNilF(t, err, "The error occurred because you cannot change the file permission") @@ -75,7 +75,7 @@ func TestloadConnectionConfig_Default(t *testing.T) { assertEqualF(t, cfg.Port, 300) } -func TestloadConnectionConfig_OAuth(t *testing.T) { +func TestLoadConnectionConfigForOAuth(t *testing.T) { err := os.Chmod("./test_data/connections.toml", 0600) assertNilF(t, err, "The error occurred because you cannot change the file permission")