Skip to content

Commit 45eb26d

Browse files
authored
fix(scaletest): increase time range check causing flake on MacOS (#5776)
1 parent 41145a6 commit 45eb26d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scaletest/agentconn/run_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ func Test_Runner(t *testing.T) {
186186
require.WithinRange(t,
187187
time.Now(),
188188
start.Add(testutil.WaitShort-time.Second),
189-
start.Add(testutil.WaitShort+5*time.Second),
189+
start.Add(testutil.WaitShort+10*time.Second),
190190
)
191191

192192
require.Contains(t, logStr, "Opening connection to workspace agent")

0 commit comments

Comments
 (0)