Skip to content

Commit

Permalink
Merge branch 'authfile' of https://github.com/wallyqs/nats-operator i…
Browse files Browse the repository at this point in the history
…nto authfile
  • Loading branch information
wallyqs committed Apr 29, 2019
2 parents 1a934d0 + fde6055 commit ab8bd6c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions test/reloader/reloader_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,9 @@ func TestReloader(t *testing.T) {
t.Fatal(err)
}
// We should have gotten only one signal for each configuration file
if signals != len(configFiles) {
t.Fatalf("Wrong number of signals received.")
got := signals
expected := len(configFiles)
if got != expected {
t.Fatalf("Wrong number of signals received. Expected: %v, got: %v", expected, got)
}
}

0 comments on commit ab8bd6c

Please sign in to comment.