Skip to content

Commit

Permalink
rewording double negatives
Browse files Browse the repository at this point in the history
  • Loading branch information
JonRowe committed Jun 26, 2013
1 parent 795c223 commit 11dfcd5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Feature: allow a message on any instance of a class
expect(o.foo).to eq(:return_value)
end
it "wont fail if no instances receive that message" do
it "passes even if no instances receive that message" do
o = Object.new
end
end
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Feature: expect a message on any instance of a class
expect(o.foo).to eq(:return_value)
end
it "fails if no instance receives that message" do
it "fails unless an instance receives that message" do
o = Object.new
end
end
Expand Down

0 comments on commit 11dfcd5

Please sign in to comment.