Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-10-19 15:57:54 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-10-19 15:57:54 +0300
commit419c53ec62de6e97a517abd5fdd4cbde3a942a34 (patch)
tree1f43a548b46bca8a5fb8fe0c31cef1883d49c5b6 /spec/support/shared_examples/integrations/integration_settings_form.rb
parent1da20d9135b3ad9e75e65b028bffc921aaf8deb7 (diff)
Add latest changes from gitlab-org/gitlab@16-5-stable-eev16.5.0-rc42
Diffstat (limited to 'spec/support/shared_examples/integrations/integration_settings_form.rb')
-rw-r--r--spec/support/shared_examples/integrations/integration_settings_form.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/support/shared_examples/integrations/integration_settings_form.rb b/spec/support/shared_examples/integrations/integration_settings_form.rb
index 1d7f74837f2..c665f6a57f1 100644
--- a/spec/support/shared_examples/integrations/integration_settings_form.rb
+++ b/spec/support/shared_examples/integrations/integration_settings_form.rb
@@ -16,7 +16,7 @@ RSpec.shared_examples 'integration settings form' do
page.within('form.integration-settings-form') do
expect(page).to have_field('Active', type: 'checkbox', wait: 0),
- "#{integration.title} active field not present"
+ "#{integration.title} active field not present"
fields = parse_json(fields_for_integration(integration))
fields.each do |field|
@@ -24,7 +24,7 @@ RSpec.shared_examples 'integration settings form' do
field_name = field[:name]
expect(page).to have_field(field[:title], wait: 0),
- "#{integration.title} field #{field_name} not present"
+ "#{integration.title} field #{field_name} not present"
end
api_only_fields = integration.fields.select { _1[:api_only] }
@@ -43,7 +43,7 @@ RSpec.shared_examples 'integration settings form' do
end
expect(page).to have_field(trigger_title, type: 'checkbox', wait: 0),
- "#{integration.title} field #{trigger_title} checkbox not present"
+ "#{integration.title} field #{trigger_title} checkbox not present"
end
end
end