From 27308f86b8c8255d793d9fb0a0ff1006ddddd139 Mon Sep 17 00:00:00 2001 From: Janell-Huyck Date: Mon, 27 Nov 2023 15:29:23 -0500 Subject: [PATCH] corrected comments --- spec/features/add_delete_edit_author_spec.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/spec/features/add_delete_edit_author_spec.rb b/spec/features/add_delete_edit_author_spec.rb index 08d96d7c..18c2d15e 100644 --- a/spec/features/add_delete_edit_author_spec.rb +++ b/spec/features/add_delete_edit_author_spec.rb @@ -77,7 +77,7 @@ def last_name_fields first_name_fields.last.set('ThirdFirstName') last_name_fields.last.set('ThirdLastName') - # Step 12: Add fourth and fifth authors + # Add fourth and fifth authors click_on 'Add Author' first_name_fields.last.set('FourthFirstName') last_name_fields.last.set('FourthLastName') @@ -85,10 +85,10 @@ def last_name_fields first_name_fields.last.set('FifthFirstName') last_name_fields.last.set('FifthLastName') - # Step 13: Remove the 'third' author + # Remove the 'third' author remove_author_at_index(1) - # Step 14: Remove the 'fourth' author + # Remove the 'fourth' author remove_author_at_index(1) # Verify that there are now only 2 authors