From 73dd32248315c413de61c76e50a0613d948af4b5 Mon Sep 17 00:00:00 2001 From: Axel Paillaud Date: Tue, 22 Oct 2024 11:48:00 +0200 Subject: [PATCH] Update how-to-create-your-own-behat-tests.md With missing space in the new scenario example, the gherkin code is not working (cart suite has undefined steps "And there is a state named "state1" with iso code "TEST-1" [...]") --- testing/integration-tests/how-to-create-your-own-behat-tests.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/integration-tests/how-to-create-your-own-behat-tests.md b/testing/integration-tests/how-to-create-your-own-behat-tests.md index 853e243a86..2596f512a3 100644 --- a/testing/integration-tests/how-to-create-your-own-behat-tests.md +++ b/testing/integration-tests/how-to-create-your-own-behat-tests.md @@ -163,7 +163,7 @@ Here is my scenario now: # We define the standard PrestaShop localisation tree: zone > country > state > address And there is a zone named "North America" And there is a country named "country1" and iso code "US" in zone "North America" - And there is a state named "state1" with iso code "TEST-1" in country"country1" and zone "North America" + And there is a state named "state1" with iso code "TEST-1" in country "country1" and zone "North America" And there is an address named "address1" with postcode "1" in state "state1" # We need a carrier with shipping fees Given there is a carrier named "carrier1"