s/assert/assert_equal

This commit is contained in:
Arthur Neves 2013-10-21 14:27:18 -04:00
parent 455a898714
commit 2ea0920f08

View File

@ -58,7 +58,7 @@ module ActiveModel
def test_setup_acessor_when_nil
assert_nil CONFIG.foo
CONFIG.foo = 1
assert 1, CONFIG.foo
assert_equal 1, CONFIG.foo
assert_nil CONFIG.bar
end
end