Skip to content

Commit 1f2a326

Browse files
committed
Fix string syntax
1 parent cf6df14 commit 1f2a326

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_inspect.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def test_inspect_members(self):
3131
]
3232
pattern = (
3333
r"(https://github.com/openjdk/jdk/blob/)"
34-
"[^ ]*(/share/classes/java/lang/Iterable\.java)"
34+
r"[^ ]*(/share/classes/java/lang/Iterable\.java)"
3535
)
3636
members_string = re.sub(pattern, r"\1...\2", "".join(members))
3737
assert members_string.split("\n") == expected

0 commit comments

Comments
 (0)