diff --git a/features/navigation/addons_versions_modal.feature b/features/navigation/addons_versions_modal.feature index 139004d33..58e64a990 100644 --- a/features/navigation/addons_versions_modal.feature +++ b/features/navigation/addons_versions_modal.feature @@ -9,7 +9,7 @@ Feature: Addon versions | email | password | password_confirmation | full_name | initials | | admin@myorg.com | mypassword1234 | mypassword1234 | Karli Novak | KN | And "admin@myorg.com" is in "BioSistemika Process" team as a "admin" - And is signed in with "admin@myorg.com", "mypassword1234" + And "admin@myorg.com" is signed in with "mypassword1234" @javascript Scenario: Open the sciNote addons modal diff --git a/spec/models/user_spec.rb b/spec/models/user_spec.rb index b282dcd4c..0d254c439 100644 --- a/spec/models/user_spec.rb +++ b/spec/models/user_spec.rb @@ -107,12 +107,12 @@ describe User, type: :model do expect(table.macro).to eq(:has_many) end - it 'have many repositories' do + it 'have many modified results' do table = User.reflect_on_association(:modified_results) expect(table.macro).to eq(:has_many) end - it 'have many repositories' do + it 'have many modified steps' do table = User.reflect_on_association(:modified_steps) expect(table.macro).to eq(:has_many) end