<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -32,13 +32,15 @@ class RegexpMatchesTest &lt; Test::Unit::TestCase
     assert !matcher.matches?([])
   end
   
-  def test_should_not_raise_error_on_argument_that_does_not_respond_to_equals_squiggle
+  def test_should_not_raise_error_on_argument_that_does_not_respond_to_equals_tilde
+    object_not_responding_to_equals_tilde = Class.new { undef =~ }.new
     matcher = regexp_matches(/oo/)
-    assert_nothing_raised { matcher.matches?([:foo]) }
+    assert_nothing_raised { matcher.matches?([object_not_responding_to_equals_tilde]) }
   end
   
-  def test_should_not_match_on_argument_that_does_not_respond_to_equals_squiggle
+  def test_should_not_match_on_argument_that_does_not_respond_to_equals_tilde
+    object_not_responding_to_equals_tilde = Class.new { undef =~ }.new
     matcher = regexp_matches(/oo/)
-    assert !matcher.matches?([:foo])
+    assert !matcher.matches?([object_not_responding_to_equals_tilde])
   end
 end
\ No newline at end of file</diff>
      <filename>test/unit/parameter_matchers/regexp_matches_test.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>3799298af3f002513ea1a0a812eb450c2257aca3</id>
    </parent>
  </parents>
  <author>
    <name>James Mead</name>
    <email>james@floehopper.org</email>
  </author>
  <url>http://github.com/floehopper/mocha/commit/52735d0e3954c47791f7f858988e5960160bbbd6</url>
  <id>52735d0e3954c47791f7f858988e5960160bbbd6</id>
  <committed-date>2009-09-15T08:02:05-07:00</committed-date>
  <authored-date>2009-09-15T08:02:05-07:00</authored-date>
  <message>Fix Ruby 1.9 build broken by accepting commit directly from GitHub ForkQueue.</message>
  <tree>f859b4c6b27f488830c371eb98ef616ea1577719</tree>
  <committer>
    <name>James Mead</name>
    <email>james@floehopper.org</email>
  </committer>
</commit>
