Skip to content

Commit be4bd3d

Browse files
authored
Merge pull request rails#53189 from jeromedalbert/bug-report-template-assert-not
Use `assert_not` in bug report template TestCase
2 parents c1689d8 + b184706 commit be4bd3d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

guides/bug_report_templates/generic.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@
1717
class BugTest < ActiveSupport::TestCase
1818
def test_stuff
1919
assert "zomg".present?
20-
refute "".present?
20+
assert_not "".present?
2121
end
2222
end

0 commit comments

Comments
 (0)