1
0
Fork 0
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 commit ab5d5c95ec, reversing
changes made to ef4f5ef69b.
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

View file

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

View file

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