Skip to content

Commit

Permalink
Fix sleep being way too long
Browse files Browse the repository at this point in the history
  • Loading branch information
Naatan committed Sep 5, 2023
1 parent c9c22c8 commit aea2f04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/testhelpers/e2e/spawn.go
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ func (s *SpawnedCmd) SendLine(value string) error {
if runtime.GOOS == "windows" {
// Work around race condition - on Windows it appears more likely to happen
// https://activestatef.atlassian.net/browse/DX-2171
time.Sleep(100 * time.Second)
time.Sleep(100 * time.Millisecond)
}
return s.TermTest.SendLine(value)
}
Expand Down

0 comments on commit aea2f04

Please sign in to comment.