summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWinnie Hellmann <winnie@gitlab.com>2019-07-05 09:22:19 +0000
committerWinnie Hellmann <winnie@gitlab.com>2019-07-05 09:22:19 +0000
commit27884c6dd1ab99140952c5b697682b7eab5e2bd8 (patch)
tree6b1ff0c15d26c970b82e58566268fe6a138abc41
parent11c8947c0eaafc8e7b562446ac12b890b3165448 (diff)
downloadgitlab-ce-winh-prefer-generated-fixtures-docs.tar.gz
-rw-r--r--doc/development/testing_guide/frontend_testing.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/development/testing_guide/frontend_testing.md b/doc/development/testing_guide/frontend_testing.md
index 4e834787414..2ab2232f58f 100644
--- a/doc/development/testing_guide/frontend_testing.md
+++ b/doc/development/testing_guide/frontend_testing.md
@@ -526,7 +526,7 @@ When creating a new fixture, it often makes sense to take a look at the correspo
This approach of storing a backend response as fixture for running frontend tests is preferable to pasting HTML or JSON chunks into test files.
It guarantees that if backend entities or HAML views are updated, we are considering the changes in our frontend code.
-Copied static chunks in frontend test files are likely not to be updated when the makes backend changes which then results in frontend bugs going unnoticed.
+Copied static chunks in frontend test files are likely not to be updated when the backend makes changes which can then result in frontend bugs going unnoticed.
## Gotchas