Skip to content

Commit

Permalink
Increase timeout for instable test on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonBaeumer committed Oct 22, 2019
1 parent bec4e88 commit 5e109e8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion integration/windows/config_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@ tests:
should work with timeout:
command: echo hello
config:
timeout: 100ms
timeout: 5m
exit-code: 0
2 changes: 1 addition & 1 deletion pkg/runtime/validator_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ output`
func Test_ValidateExpectedOut_MatchLines_ExpectedLineDoesNotExists(t *testing.T) {
value := `test`

got := validateExpectedOut(value, ExpectedOut{Lines: map[int]string{2: "my", 3: "line"}})
got := validateExpectedOut(value, ExpectedOut{Lines: map[int]string{2: "my"}})

assert.False(t, got.Success)
diff := `Line number 2 does not exists in result:
Expand Down

0 comments on commit 5e109e8

Please sign in to comment.