Skip to content

Commit

Permalink
Fix ==
Browse files Browse the repository at this point in the history
  • Loading branch information
dadgar committed Feb 5, 2016
1 parent 6c7fa53 commit 7d3be2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nomad/structs/structs_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -490,7 +490,7 @@ func TestInvalidServiceCheck(t *testing.T) {
Name: "service.name",
PortLabel: "bar",
}
if err := s.Validate(); err != nil {
if err := s.Validate(); err == nil {
t.Fatalf("Service should be invalid: %v", err)
}
}
Expand Down

0 comments on commit 7d3be2b

Please sign in to comment.