summaryrefslogtreecommitdiffstats
path: root/tests/features/steps
diff options
context:
space:
mode:
Diffstat (limited to 'tests/features/steps')
-rw-r--r--tests/features/steps/crud_database.py2
-rw-r--r--tests/features/steps/named_queries.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/features/steps/crud_database.py b/tests/features/steps/crud_database.py
index 4d692c6d..0a0928fc 100644
--- a/tests/features/steps/crud_database.py
+++ b/tests/features/steps/crud_database.py
@@ -72,7 +72,7 @@ def step_see_prompt(context):
@then('we see help output')
def step_see_help(context):
for expected_line in context.fixture_data['help_commands.txt']:
- wrappers.expect_exact(context, expected_line, timeout=1)
+ wrappers.expect_exact(context, expected_line, timeout=2)
@then('we see database created')
diff --git a/tests/features/steps/named_queries.py b/tests/features/steps/named_queries.py
index d60947ff..84afb11c 100644
--- a/tests/features/steps/named_queries.py
+++ b/tests/features/steps/named_queries.py
@@ -39,7 +39,7 @@ def step_see_named_query_saved(context):
"""
Wait to see query saved.
"""
- wrappers.expect_pager(context, 'Saved.\r\n', timeout=1)
+ wrappers.expect_exact(context, 'Saved.', timeout=2)
@then('we see the named query executed')