From b08693e86672c67d5b7926f376d1724825c983ad Mon Sep 17 00:00:00 2001 From: Adam Townsend Date: Thu, 12 Oct 2023 23:41:38 -0700 Subject: [PATCH] remove the puts, don't print out the test result --- features/step_definitions/steps.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/features/step_definitions/steps.rb b/features/step_definitions/steps.rb index d1581a3..04262a8 100644 --- a/features/step_definitions/steps.rb +++ b/features/step_definitions/steps.rb @@ -63,7 +63,7 @@ Then('I should be redirected to {string}') do |string| end Then('The status code should be {int}') do |code| - puts page.status_code.should eq(code) + page.status_code.should eq(code) end