summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--lib/bacon.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bacon.rb b/lib/bacon.rb
index eab0716..bd677ac 100644
--- a/lib/bacon.rb
+++ b/lib/bacon.rb
@@ -245,7 +245,7 @@ class Should
     
     desc = @negated ? "not " : ""
     desc << @object.inspect << "." << name.to_s
-    desc << "(" << args.map{|x|x.inspect}.join(", ") << ")"
+    desc << "(" << args.map{|x|x.inspect}.join(", ") << ") failed"
       
     satisfy(desc) { |x|
       x.__send__(name, *args, &block)