summaryrefslogtreecommitdiff
path: root/test/rubygems/test_remote_fetch_error.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/rubygems/test_remote_fetch_error.rb')
-rw-r--r--test/rubygems/test_remote_fetch_error.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/rubygems/test_remote_fetch_error.rb b/test/rubygems/test_remote_fetch_error.rb
index 29aaaa8adb..6602f8205b 100644
--- a/test/rubygems/test_remote_fetch_error.rb
+++ b/test/rubygems/test_remote_fetch_error.rb
@@ -4,7 +4,7 @@ require 'rubygems/test_case'
class TestRemoteFetchError < Gem::TestCase
def test_password_redacted
error = Gem::RemoteFetcher::FetchError.new('There was an error fetching', 'https://user:secret@gemsource.org')
- refute_match 'secret', error.to_s
+ refute_match %r|secret|, error.to_s
end
def test_invalid_url