Skip to content

Commit cc698f1

Browse files
committed
fix: remove trailing spaces in secure token parsing tests
Clean up trailing whitespace that was causing formatting issues in CI checks for golangci-lint.
1 parent 2f08135 commit cc698f1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pkg/handlers/notification_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -514,7 +514,7 @@ func (suite *NotificationTestSuite) TestSecureTokenParsing() {
514514
{
515515
name: "StandardSDKKey",
516516
sdkKeyHeader: "normal_sdk_key_123",
517-
expectedSDKKey: "normal_sdk_key_123",
517+
expectedSDKKey: "normal_sdk_key_123",
518518
description: "Standard SDK key without secure token should remain unchanged",
519519
},
520520
{
@@ -531,7 +531,7 @@ func (suite *NotificationTestSuite) TestSecureTokenParsing() {
531531
},
532532
{
533533
name: "EmptySDKKey",
534-
sdkKeyHeader: ":api_key_456",
534+
sdkKeyHeader: ":api_key_456",
535535
expectedSDKKey: "",
536536
description: "Empty SDK key portion should result in empty string",
537537
},
@@ -542,7 +542,7 @@ func (suite *NotificationTestSuite) TestSecureTokenParsing() {
542542
description: "Empty API key portion should extract SDK key",
543543
},
544544
{
545-
name: "ColonOnly",
545+
name: "ColonOnly",
546546
sdkKeyHeader: ":",
547547
expectedSDKKey: "",
548548
description: "Colon only should result in empty SDK key",

0 commit comments

Comments
 (0)