From 6abeefba2134984a513a95426e5318f88ab01856 Mon Sep 17 00:00:00 2001 From: Jasha <8935917+Jasha10@users.noreply.github.com> Date: Sat, 29 Jan 2022 19:14:41 -0600 Subject: [PATCH] black format tests/test_grammar.py --- tests/test_grammar.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/test_grammar.py b/tests/test_grammar.py index 1a52f3ee6..0b28345c6 100644 --- a/tests/test_grammar.py +++ b/tests/test_grammar.py @@ -121,7 +121,7 @@ ("str_ws_1", "hello world", "hello world"), ("str_ws_2", "a b\tc \t\t d", "a b\tc \t\t d"), ("str_esc_ws_1", r"\ hello\ world\ ", " hello world "), - ("str_esc_ws_2", fr"\ \{TAB}\{TAB}", f" {TAB}{TAB}"), + ("str_esc_ws_2", rf"\ \{TAB}\{TAB}", f" {TAB}{TAB}"), ("str_esc_comma", r"hello\, world", "hello, world"), ("str_esc_colon", r"a\:b", "a:b"), ("str_esc_equal", r"a\=b", "a=b"), @@ -186,9 +186,9 @@ ), ( "dict_unquoted_key", - fr"{{a0-null-1-3.14-NaN- {TAB}-true-False-{UNQUOTED_SPECIAL}\(\)\[\]\{{\}}\:\=\ \{TAB}\,:0}}", + rf"{{a0-null-1-3.14-NaN- {TAB}-true-False-{UNQUOTED_SPECIAL}\(\)\[\]\{{\}}\:\=\ \{TAB}\,:0}}", { - fr"a0-null-1-3.14-NaN- {TAB}-true-False-{UNQUOTED_SPECIAL}()[]{{}}:= {TAB},": 0 + rf"a0-null-1-3.14-NaN- {TAB}-true-False-{UNQUOTED_SPECIAL}()[]{{}}:= {TAB},": 0 }, ), (