Commit 8e6090b2 authored by Kati Paizee's avatar Kati Paizee

Merge branch 'aa-fix-spelling-for-specified' into 'master'

Spelling fix for specified

See merge request gitlab-org/gitlab!81784
parents b2754c6c 5aafface
......@@ -14,7 +14,7 @@ FactoryBot.define do
end
trait :author_email do
author_email_regex { '.*@veryspecificedomain.com' }
author_email_regex { '.*@veryspecificdomain.com' }
end
factory :push_rule_sample do
......
......@@ -52,7 +52,7 @@ describe('parseAndValidateDates', () => {
it.each`
scenario | startDateParam | endDateParam | expected
${'returns the default range if not specified'} | ${''} | ${''} | ${{ startDate: new Date('2020-01-22'), endDate: new Date('2021-01-21') }}
${'returns the dates specificed if in range'} | ${'2020-06-22'} | ${'2021-01-10'} | ${{ startDate: new Date('2020-06-22'), endDate: new Date('2021-01-10') }}
${'returns the dates specified if in range'} | ${'2020-06-22'} | ${'2021-01-10'} | ${{ startDate: new Date('2020-06-22'), endDate: new Date('2021-01-10') }}
${'returns the default range if dates are out of bounds'} | ${'2018-06-22'} | ${'2021-01-16'} | ${{ startDate: new Date('2020-01-22'), endDate: new Date('2021-01-21') }}
${'returns the default range startDate is greater than endDate'} | ${'2021-01-22'} | ${'2020-06-12'} | ${{ startDate: new Date('2020-01-22'), endDate: new Date('2021-01-21') }}
`('$scenario', ({ startDateParam, endDateParam, expected }) => {
......
......@@ -74,7 +74,7 @@ module Gitlab
def verify_params
raise Errors::DashboardProcessingError, _('Cluster is required for Stages::ClusterEndpointInserter') unless params[:cluster]
raise Errors::DashboardProcessingError, _('Cluster type must be specificed for Stages::ClusterEndpointInserter') unless params[:cluster_type]
raise Errors::DashboardProcessingError, _('Cluster type must be specified for Stages::ClusterEndpointInserter') unless params[:cluster_type]
end
end
end
......
......@@ -7612,7 +7612,7 @@ msgstr ""
msgid "Cluster level"
msgstr ""
msgid "Cluster type must be specificed for Stages::ClusterEndpointInserter"
msgid "Cluster type must be specified for Stages::ClusterEndpointInserter"
msgstr ""
msgid "ClusterAgents|%{name} successfully deleted"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment