Skip to content

Commit

Permalink
Revert "Merge pull request #34421 from albertoalmagro/use-assert-not-…
Browse files Browse the repository at this point in the history
…instead-of-refute"

This reverts commit ab5d5c9, reversing
changes made to ef4f5ef.
  • Loading branch information
kamipo committed Nov 11, 2018
1 parent ab5d5c9 commit 44bee7f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion guides/bug_report_templates/generic_gem.rb
Expand Up @@ -18,6 +18,6 @@
class BugTest < Minitest::Test
def test_stuff
assert "zomg".present?
assert_not "".present?
refute "".present?
end
end
2 changes: 1 addition & 1 deletion guides/bug_report_templates/generic_master.rb
Expand Up @@ -17,6 +17,6 @@
class BugTest < Minitest::Test
def test_stuff
assert "zomg".present?
assert_not "".present?
refute "".present?
end
end

0 comments on commit 44bee7f

Please sign in to comment.