mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Revert "Merge pull request #34421 from albertoalmagro/use-assert-not-instead-of-refute"
This reverts commitab5d5c95ec
, reversing changes made toef4f5ef69b
.
This commit is contained in:
parent
ab5d5c95ec
commit
44bee7f242
2 changed files with 2 additions and 2 deletions
|
@ -18,6 +18,6 @@ require "minitest/autorun"
|
|||
class BugTest < Minitest::Test
|
||||
def test_stuff
|
||||
assert "zomg".present?
|
||||
assert_not "".present?
|
||||
refute "".present?
|
||||
end
|
||||
end
|
||||
|
|
|
@ -17,6 +17,6 @@ require "minitest/autorun"
|
|||
class BugTest < Minitest::Test
|
||||
def test_stuff
|
||||
assert "zomg".present?
|
||||
assert_not "".present?
|
||||
refute "".present?
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue