From 4c0a7b95c6d83c2dd8002c7f8fdf858701566dae Mon Sep 17 00:00:00 2001 From: Larry Greene Date: Mon, 19 Nov 2018 03:01:10 +0000 Subject: [PATCH] Fixed capitalization (#22282) --- guide/english/agile/acceptance-testing/index.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/guide/english/agile/acceptance-testing/index.md b/guide/english/agile/acceptance-testing/index.md index e1712eacd0b..55a1358cf68 100644 --- a/guide/english/agile/acceptance-testing/index.md +++ b/guide/english/agile/acceptance-testing/index.md @@ -114,9 +114,9 @@ There are multiple scenarios here such as: You can write Acceptance Tests for each of these sub-features of the bigger dialog box feature. Aside from the code that handles the infrastructure of how the test will be executed, your test for the first scenario could look like (in pseudocode): - Given that the page is opened - - The dialog box should be visible - - And The dialog box should contain an input box - - And The input box should have placeholder text "Your name, please!" + - The dialog box should be visible + - And the dialog box should contain an input box + - And the input box should have placeholder text "Your name, please!" ### Notes