Remove warning about unused literal ignored

This commit is contained in:
Norman Clarke 2012-05-29 00:38:08 -03:00
parent 85b3b1f67d
commit 08de01c82f
1 changed files with 2 additions and 2 deletions

View File

@ -723,11 +723,11 @@ HAML
end
def test_silent_script_with_hyphen_case
assert_equal("", render("- 'foo-case-bar-case'"))
assert_equal("", render("- a = 'foo-case-bar-case'"))
end
def test_silent_script_with_hyphen_end
assert_equal("", render("- 'foo-end-bar-end'"))
assert_equal("", render("- a = 'foo-end-bar-end'"))
end
def test_silent_script_with_hyphen_end_and_block