Revert "Merge pull request #34421 from albertoalmagro/use-assert-not-instead-of-refute"

This reverts commit ab5d5c95ec51c63d58d7e75694af748f165e2228, reversing
changes made to ef4f5ef69b5a50c897bbb17f6b36b729dff12e6c.
This commit is contained in:
Ryuta Kamizono 2018-11-11 12:35:55 +09:00
parent ab5d5c95ec
commit 44bee7f242
2 changed files with 2 additions and 2 deletions

@ -18,6 +18,6 @@
class BugTest < Minitest::Test
def test_stuff
assert "zomg".present?
assert_not "".present?
refute "".present?
end
end

@ -17,6 +17,6 @@
class BugTest < Minitest::Test
def test_stuff
assert "zomg".present?
assert_not "".present?
refute "".present?
end
end