From e8e0960f454f47142162c94a083fa9efd19d4fd9 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 2 Mar 2022 13:22:04 +0100 Subject: Merging upstream version 3.4.0. Signed-off-by: Daniel Baumann --- tests/features/steps/basic_commands.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/features/steps') diff --git a/tests/features/steps/basic_commands.py b/tests/features/steps/basic_commands.py index 7ca20f0..a7c99ee 100644 --- a/tests/features/steps/basic_commands.py +++ b/tests/features/steps/basic_commands.py @@ -97,9 +97,9 @@ def step_see_error_message(context): @when("we send source command") def step_send_source_command(context): context.tmpfile_sql_help = tempfile.NamedTemporaryFile(prefix="pgcli_") - context.tmpfile_sql_help.write(br"\?") + context.tmpfile_sql_help.write(rb"\?") context.tmpfile_sql_help.flush() - context.cli.sendline(fr"\i {context.tmpfile_sql_help.name}") + context.cli.sendline(rf"\i {context.tmpfile_sql_help.name}") wrappers.expect_exact(context, context.conf["pager_boundary"] + "\r\n", timeout=5) -- cgit v1.2.3