Skip to content

Commit

Permalink
Make terraform parallelism test more stable.
Browse files Browse the repository at this point in the history
  • Loading branch information
rhoboat committed May 5, 2022
1 parent 50794f8 commit da9bd00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/terraform/apply_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ func TestParallelism(t *testing.T) {
Apply(t, options)
end = time.Now()
duration := end.Sub(start)
require.Greater(t, int64(duration.Seconds()), int64(25))
require.GreaterOrEqual(t, int64(duration.Seconds()), int64(25))
}
func TestTgApplyUseLockNoError(t *testing.T) {
t.Parallel()
Expand Down

0 comments on commit da9bd00

Please sign in to comment.