We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b865d13 commit aabf1c9Copy full SHA for aabf1c9
go/test/endtoend/onlineddl/flow/onlineddl_flow_test.go
@@ -244,7 +244,7 @@ func TestOnlineDDLFlow(t *testing.T) {
244
select {
245
case <-ticker.C:
246
case <-workloadCtx.Done():
247
- t.Logf("Terminating routine throttler check")
+ fmt.Println("Terminating routine throttler check")
248
return
249
}
250
@@ -258,8 +258,8 @@ func TestOnlineDDLFlow(t *testing.T) {
258
wg.Add(1)
259
go func() {
260
defer cancel()
261
- defer t.Logf("Terminating workload")
262
defer wg.Done()
+ defer fmt.Println("Terminating workload")
263
runMultipleConnections(workloadCtx, t)
264
}()
265
})
0 commit comments