summaryrefslogtreecommitdiff
path: root/lib/test
diff options
context:
space:
mode:
authorntalbott <ntalbott@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-12-01 19:25:51 +0000
committerntalbott <ntalbott@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-12-01 19:25:51 +0000
commit6e4b8e19d77ee82f6759ef117c576df6d3d84320 (patch)
tree7f7da22f9a6b40b483e2a9ecc3355674a0fbc017 /lib/test
parent062616677f26b9dfd1576c4157afcd77874ff6b1 (diff)
* lib/test/unit/assertions.rb: fixed #assert_no_match message.
* test/testunit/test_assertions.rb: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5079 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/test')
-rw-r--r--lib/test/unit/assertions.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/test/unit/assertions.rb b/lib/test/unit/assertions.rb
index 9730fe2670..3c2f7b98c0 100644
--- a/lib/test/unit/assertions.rb
+++ b/lib/test/unit/assertions.rb
@@ -229,7 +229,7 @@ EOT
public
def assert_no_match(regexp, string, message="")
_wrap_assertion do
- assert_instance_of(Regexp, regexp, "The first argument to assert_does_not_match should be a Regexp.")
+ assert_instance_of(Regexp, regexp, "The first argument to assert_no_match should be a Regexp.")
full_message = build_message(message, "<?> expected to not match\n<?>.", regexp, string)
assert_block(full_message) { regexp !~ string }
end