Skip to content

Commit ed2d07c

Browse files
committed
integration: Logging timestamp before calling step.Stop
Signed-off-by: Burak Ok <[email protected]>
1 parent 1f12b74 commit ed2d07c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

integration/teststeps.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,8 @@ func RunTestSteps(steps []TestStep, t *testing.T, options ...Option) {
9292
if step.IsStartAndStop() && step.Running() {
9393
// Wait a bit before stopping the step.
9494
time.Sleep(stepWaitDuration)
95+
t.Logf("[%s] Stopping %q\n", time.Now().UTC(), step.DisplayName())
9596
step.Stop(t)
96-
t.Logf("[%s] Stopped %q\n", time.Now().UTC(), step.DisplayName())
9797
}
9898
}()
9999
}

0 commit comments

Comments
 (0)