diff options
author | Rémy Coutable <remy@rymai.me> | 2019-06-27 15:36:48 +0000 |
---|---|---|
committer | Rémy Coutable <remy@rymai.me> | 2019-06-27 15:36:48 +0000 |
commit | 7a2eaa5dd6bb8c510fc71aa54f6c39e2faa86d25 (patch) | |
tree | 22b25b680f288c257913185a68b604edd61c2bf2 | |
parent | db6a6d29c05918f8301bf861bc16e757782ce7c9 (diff) | |
parent | e6257e43cb524156b8f116cdd0894bbc7a417be1 (diff) | |
download | gitlab-ce-7a2eaa5dd6bb8c510fc71aa54f6c39e2faa86d25.tar.gz |
Merge branch 'docs/fix-typo-on-e2e-quick-start-guide' into 'master'
Fix typo on end-to-end testing quick start guide
Closes gitlab-ee#12466
See merge request gitlab-org/gitlab-ce!30129
-rw-r--r-- | doc/development/testing_guide/end_to_end/quick_start_guide.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/development/testing_guide/end_to_end/quick_start_guide.md b/doc/development/testing_guide/end_to_end/quick_start_guide.md index 670d2b31a29..041bdf716b3 100644 --- a/doc/development/testing_guide/end_to_end/quick_start_guide.md +++ b/doc/development/testing_guide/end_to_end/quick_start_guide.md @@ -365,7 +365,7 @@ Add the following `attribute :id` and `attribute :labels` right above the [`attr > We add the attributes above the existing attribute to keep them alphabetically organized. -Then, let's initialize an instance variable for labels to allow an empty array as default value when such information is not passed during the resource fabricatioin, since this optional. [Between the attributes and the `fabricate!` method](https://gitlab.com/gitlab-org/gitlab-ee/blob/1a1f1408728f19b2aa15887cd20bddab7e70c8bd/qa/qa/resource/issue.rb#L18), add the following: +Then, let's initialize an instance variable for labels to allow an empty array as default value when such information is not passed during the resource fabrication, since this optional. [Between the attributes and the `fabricate!` method](https://gitlab.com/gitlab-org/gitlab-ee/blob/1a1f1408728f19b2aa15887cd20bddab7e70c8bd/qa/qa/resource/issue.rb#L18), add the following: ```ruby def initialize |