Skip to content

Commit 1bb1080

Browse files
committed
[-] fix "S1039: unnecessary use of fmt.Sprintf"
1 parent b258934 commit 1bb1080

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

internal/pgengine/pgengine_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ func setupTestCase(t *testing.T) func(t *testing.T) {
123123
}()
124124
select {
125125
case <-timeout:
126-
t.Fatal(fmt.Sprintf("Cannot connect and initialize test database in time"))
126+
t.Fatal("Cannot connect and initialize test database in time")
127127
case <-done:
128128
}
129129
return func(t *testing.T) {

0 commit comments

Comments
 (0)