Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
asmega committed Jun 17, 2024
1 parent 692a387 commit bdbc399
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions spec/features/reminders_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
fill_in "Full name", with: "David Tau"
fill_in "Email address", with: "[email protected]"
click_on "Continue"
fill_in "form_one_time_password", with: get_otp_from_email
fill_in "form-one-time-password-field", with: get_otp_from_email
click_on "Confirm"
reminder = Reminder.order(:created_at).last

Expand Down Expand Up @@ -167,7 +167,7 @@
expect(page).to have_text("Personal details")
click_on "Continue"

fill_in "form_one_time_password", with: get_otp_from_email
fill_in "form-one-time-password-field", with: get_otp_from_email
click_on "Confirm"
reminder = Reminder.order(:created_at).last

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
fill_in "Full name", with: "David Tau"
fill_in "Email address", with: "[email protected]"
click_on "Continue"
fill_in "form_one_time_password", with: get_otp_from_email
fill_in "form-one-time-password-field", with: get_otp_from_email
click_on "Confirm"
reminder = Reminder.order(:created_at).last

Expand Down Expand Up @@ -76,7 +76,7 @@
fill_in "Full name", with: "David Tau"
fill_in "Email address", with: "[email protected]"
click_on "Continue"
fill_in "form_one_time_password", with: get_otp_from_email
fill_in "form-one-time-password-field", with: get_otp_from_email
click_on "Confirm"
reminder = Reminder.order(:created_at).last

Expand Down

0 comments on commit bdbc399

Please sign in to comment.