Skip to content

Commit

Permalink
iff -> if and only if
Browse files Browse the repository at this point in the history
  • Loading branch information
Wieger Steggerda committed Feb 5, 2016
1 parent 113af05 commit cd88ff6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions swim/member_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -83,13 +83,13 @@ func (s *MemberTestSuite) TestNonLocalOverride() {
c := newChange(s.localAddr, s2)
expected := j > i
got := m.nonLocalOverride(c)
s.Equal(expected, got, "expected override iff j > i")
s.Equal(expected, got, "expected override if and only if j > i")

m = newMember(s.nonLocalAddr, s1)
c = newChange(s.nonLocalAddr, s2)
expected = j > i
got = m.nonLocalOverride(c)
s.Equal(expected, got, "expected override iff j > i")
s.Equal(expected, got, "expected override if and only if j > i")
}
}
}
Expand Down

0 comments on commit cd88ff6

Please sign in to comment.