diff --git a/examples/profile/integration_test/features/profile.feature b/examples/profile/integration_test/features/profile.feature index 29d00255..b1e206d3 100644 --- a/examples/profile/integration_test/features/profile.feature +++ b/examples/profile/integration_test/features/profile.feature @@ -5,10 +5,10 @@ Сценарий: Успешное заполнение профиля Когда Я перехожу к редактированию профиля - И Я указываю фамилию "Voronin" - И Я указываю дату рождения "1998-12-31" - И Я указываю имя "Vladislav" - И Я указываю отчество "Vladimirovich" + И Я указываю фамилию "Semenikhina" + И Я указываю дату рождения "1998-11-14" + И Я указываю имя "Daria" + И Я указываю отчество "Evgenevna" И Я перехожу далее И Я выбираю город "Voronezh" И Я перехожу далее diff --git a/examples/profile/integration_test/gherkin_suite_test.g.dart b/examples/profile/integration_test/gherkin_suite_test.g.dart index d251fe9c..d044b6b2 100644 --- a/examples/profile/integration_test/gherkin_suite_test.g.dart +++ b/examples/profile/integration_test/gherkin_suite_test.g.dart @@ -55,7 +55,7 @@ class _CustomGherkinIntegrationTestRunner extends GherkinIntegrationTestRunner { bool skip, ) async { return await runStep( - name: 'И Я указываю фамилию "Voronin"', + name: 'И Я указываю фамилию "Semenikhina"', multiLineStrings: [], table: null, dependencies: dependencies, @@ -67,7 +67,7 @@ class _CustomGherkinIntegrationTestRunner extends GherkinIntegrationTestRunner { bool skip, ) async { return await runStep( - name: 'И Я указываю дату рождения "1998-12-31"', + name: 'И Я указываю дату рождения "1998-11-14"', multiLineStrings: [], table: null, dependencies: dependencies, @@ -79,7 +79,7 @@ class _CustomGherkinIntegrationTestRunner extends GherkinIntegrationTestRunner { bool skip, ) async { return await runStep( - name: 'И Я указываю имя "Vladislav"', + name: 'И Я указываю имя "Daria"', multiLineStrings: [], table: null, dependencies: dependencies, @@ -91,7 +91,7 @@ class _CustomGherkinIntegrationTestRunner extends GherkinIntegrationTestRunner { bool skip, ) async { return await runStep( - name: 'И Я указываю отчество "Vladimirovich"', + name: 'И Я указываю отчество "Evgenevna"', multiLineStrings: [], table: null, dependencies: dependencies,