diff --git a/test/helpers/todo_helpers_test.rb b/test/helpers/todo_helpers_test.rb index 0e952a9d..6491b561 100644 --- a/test/helpers/todo_helpers_test.rb +++ b/test/helpers/todo_helpers_test.rb @@ -5,23 +5,23 @@ class TodosHelpersTest < ActionView::TestCase test "remote_edit_button" do html = remote_edit_button(todos(:call_bill)) - assert_equal "\"Edit\"", html + assert_equal "\"Edit\"", html end test "remote_delete_menu" do html = remote_delete_menu_item(todos(:call_bill)) - assert_equal "Delete", html + assert_equal "Delete", html end test "remote_delete_dependency" do todo = todos(:call_bill_gates_every_day) predecessor = todos(:call_bill) html = remote_delete_dependency(todo, predecessor) - assert_equal "\"Blank\"", html + assert_equal "\"Blank\"", html end test "remote_promote_to_project_menu_item" do html = remote_promote_to_project_menu_item(todos(:call_bill)) - assert_equal "Make project", html + assert_equal "Make project", html end end