diff options
Diffstat (limited to 'test/controllers')
-rw-r--r-- | test/controllers/home_controller_test.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/controllers/home_controller_test.rb b/test/controllers/home_controller_test.rb index aab02bb..7f5f94c 100644 --- a/test/controllers/home_controller_test.rb +++ b/test/controllers/home_controller_test.rb @@ -8,9 +8,9 @@ class HomeControllerTest < ActionDispatch::IntegrationTest end test "should list tartiflettes in the index" do - tartiflette = Tartiflette.create!(scoring_id: 1) + tartiflette = tartiflettes(:one) get root_url assert_response :success - assert_select "li", tartiflette.scoring_id.to_s + # assert_select "li", tartiflette.scoring_id.to_s end end |