Skip to content

Commit aec630d

Browse files
authored
fix: conform to stricter printf usage in Go 1.24 (#508)
1 parent 497ac50 commit aec630d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: autobahn_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ func TestAutobahn(t *testing.T) {
9292
}
9393
})
9494

95-
c, _, err := websocket.Dial(ctx, fmt.Sprintf(wstestURL+"/updateReports?agent=main"), nil)
95+
c, _, err := websocket.Dial(ctx, wstestURL+"/updateReports?agent=main", nil)
9696
assert.Success(t, err)
9797
c.Close(websocket.StatusNormalClosure, "")
9898

0 commit comments

Comments
 (0)