Skip to content

Commit a0d4499

Browse files
committed
fix linter
1 parent 65b4e75 commit a0d4499

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

core/clients/key_flow_continuous_refresh_test.go

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -422,7 +422,10 @@ func TestContinuousRefreshTokenConcurrency(t *testing.T) {
422422

423423
// TEST START
424424
currentTestPhase = 1
425-
go refresher.continuousRefreshToken()
425+
// Ignore returned error as expected in test
426+
go func() {
427+
_ = refresher.continuousRefreshToken()
428+
}()
426429

427430
// Wait until continuousRefreshToken() is blocked
428431
<-chanBlockContinuousRefreshToken

0 commit comments

Comments
 (0)