Skip to content

Commit b4006db

Browse files
committed
Changed test names to match proper context
1 parent 9e34127 commit b4006db

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

activesupport/test/test_test.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,11 +100,11 @@ class AssertPresentTest < ActiveSupport::TestCase
100100
BLANK = [ EmptyTrue.new, nil, false, '', ' ', " \n\t \r ", [], {} ]
101101
NOT_BLANK = [ EmptyFalse.new, Object.new, true, 0, 1, 'x', [nil], { nil => 0 } ]
102102

103-
def test_assert_blank_true
103+
def test_assert_present_true
104104
NOT_BLANK.each { |v| assert_present v }
105105
end
106106

107-
def test_assert_blank_false
107+
def test_assert_present_false
108108
BLANK.each { |v|
109109
begin
110110
assert_present v

0 commit comments

Comments
 (0)