summaryrefslogtreecommitdiff
path: root/spec/mspec/spec/expectations/should_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/mspec/spec/expectations/should_spec.rb')
-rw-r--r--spec/mspec/spec/expectations/should_spec.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/spec/mspec/spec/expectations/should_spec.rb b/spec/mspec/spec/expectations/should_spec.rb
index 3258caf13c..2c896f1c3b 100644
--- a/spec/mspec/spec/expectations/should_spec.rb
+++ b/spec/mspec/spec/expectations/should_spec.rb
@@ -14,8 +14,8 @@ describe "MSpec" do
@out.should include <<-EOS
1)
MSpec expectation method #should causes a failue to be recorded FAILED
-Expected 1
- to equal 2
+Expected 1 == 2
+to be truthy but was false
EOS
end
@@ -33,8 +33,8 @@ EOS
@out.should include <<-EOS
3)
MSpec expectation method #should_not causes a failure to be recorded FAILED
-Expected 1
- not to equal 1
+Expected 1 == 1
+to be falsy but was true
EOS
end