1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Fix restoration

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@66588 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2018-12-27 14:18:16 +00:00
parent 71987f3f09
commit d9cce0814d

View file

@ -3,10 +3,10 @@ require_relative '../../spec_helper'
describe "Kernel#=~" do
verbose = $VERBOSE
before :each do
$VERBOSE = nil
verbose, $VERBOSE = $VERBOSE, nil
end
after :each do
verbose = $VERBOSE
$VERBOSE = verbose
end
it "returns nil matching any object" do