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:
Diffstat (limited to 'doc/development/testing_guide/testing_migrations_guide.md')
-rw-r--r--doc/development/testing_guide/testing_migrations_guide.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/development/testing_guide/testing_migrations_guide.md b/doc/development/testing_guide/testing_migrations_guide.md
index 1b1fdcca003..f69f0d1febb 100644
--- a/doc/development/testing_guide/testing_migrations_guide.md
+++ b/doc/development/testing_guide/testing_migrations_guide.md
@@ -290,7 +290,7 @@ RSpec.describe MigrateIncidentIssuesToIncidentType do
.from(issue_type)
.to(incident_type)
- expect(other_issue.reload.issue_type).to eql(issue_type)
+ expect(other_issue.reload.issue_type).to eq(issue_type)
end
end