Skip to content

Commit ae2a5d2

Browse files
committed
Let black reformat test_pygdbmi.py
1 parent 9881de6 commit ae2a5d2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/test_pygdbmi.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -463,8 +463,8 @@ def test_unescape(self) -> None:
463463
# Several escapes in the same string.
464464
assert_match(
465465
unescape(
466-
fr"\tmultiple\nescapes\tin\"the\'same\"string\"foo"
467-
fr"{self.GDB_ESCAPED_SPACE}bar{self.GDB_ESCAPED_PIZZA}"
466+
rf"\tmultiple\nescapes\tin\"the\'same\"string\"foo"
467+
rf"{self.GDB_ESCAPED_SPACE}bar{self.GDB_ESCAPED_PIZZA}"
468468
),
469469
'\tmultiple\nescapes\tin"the\'same"string"foo bar\N{SLICE OF PIZZA}',
470470
)
@@ -517,7 +517,7 @@ def assert_advance(
517517
assert_advance(r'x="\n"', "\n", "", start=3)
518518
assert_advance(r'"\nhello\nworld\n"', "\nhello\nworld\n", "", start=1)
519519
assert_advance(
520-
fr'"I want a {self.GDB_ESCAPED_PIZZA}"something else',
520+
rf'"I want a {self.GDB_ESCAPED_PIZZA}"something else',
521521
"I want a \N{SLICE OF PIZZA}",
522522
"something else",
523523
start=1,

0 commit comments

Comments
 (0)