From a789a0296b768160f533eaaae91b18c015cd7742 Mon Sep 17 00:00:00 2001 From: Dan Rice Date: Mon, 10 Aug 2015 09:49:36 -0400 Subject: [PATCH] Reorder HTML tag attributes to fix failing tests --- test/helpers/todo_helpers_test.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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