From b19f097a0e44de3ce9693c72e1c2640c9109f5c7 Mon Sep 17 00:00:00 2001 From: Imran Shahid Date: Mon, 20 Dec 2021 15:15:32 +0400 Subject: [PATCH] formatting --- v3/integrations/nrmssql/nrmssql_test.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/v3/integrations/nrmssql/nrmssql_test.go b/v3/integrations/nrmssql/nrmssql_test.go index e7ba90789..5b871311c 100644 --- a/v3/integrations/nrmssql/nrmssql_test.go +++ b/v3/integrations/nrmssql/nrmssql_test.go @@ -32,19 +32,19 @@ func TestParseDSN(t *testing.T) { expDatabaseName: "", }, { - dsn: "sqlserver://someuser:foo%3A%2F%5C%21~%40;bar@somehost:1434?connection+timeout=30", + dsn: "sqlserver://someuser:foo%3A%2F%5C%21~%40;bar@somehost:1434?connection+timeout=30", expHost: "somehost", expPortPathOrID: "1434", expDatabaseName: "", }, { - dsn: "Server=mssql.test.local; Initial Catalog=test; User ID=xxxxxxx; Password=abccxxxxxx;", + dsn: "Server=mssql.test.local; Initial Catalog=test; User ID=xxxxxxx; Password=abccxxxxxx;", expHost: "mssql.test.local", expPortPathOrID: "0", expDatabaseName: "test", }, { - dsn: "sport=invalid", + dsn: "sport=invalid", expHost: "localhost", expPortPathOrID: "0", expDatabaseName: "",