Skip to content

Commit

Permalink
Merge pull request #30 from rjammala/master
Browse files Browse the repository at this point in the history
Fix typo in test
  • Loading branch information
Seth Ammons authored Feb 27, 2018
2 parents b18953f + 600c938 commit ed9870d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pester_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ func TestCustomLogHook(t *testing.T) {

// in the event of an error, let's see what the logs were
if expectedRetries != len(errorLines) {
t.Errorf("Expected %d lines to be emitted. Got %d", expectedRetries, errorLines)
t.Errorf("Expected %d lines to be emitted. Got %d", expectedRetries, len(errorLines))
}
}

Expand Down

0 comments on commit ed9870d

Please sign in to comment.