From d0410e35d2a884f4203d9a8b0ffb2f623d9c44bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Barth=C3=A9l=C3=A9my=20Ledoux?= Date: Sat, 7 Apr 2018 12:25:32 -0500 Subject: [PATCH] Fix typo --- src/v2/cookbook/unit-testing-vue-components.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/v2/cookbook/unit-testing-vue-components.md b/src/v2/cookbook/unit-testing-vue-components.md index 31643e8b0b..95bea7fb02 100644 --- a/src/v2/cookbook/unit-testing-vue-components.md +++ b/src/v2/cookbook/unit-testing-vue-components.md @@ -178,7 +178,7 @@ The below example improves the test by: - only making one assertion per `it` block - having short, clear test descriptions -- providing only the minimum data requires for the test +- providing only the minimum data required for the test - refactoring duplicated logic (creating the `wrapper` and setting the `username` variable) into a factory function *Updated test*: