Skip to content

Commit 2c98e45

Browse files
jagermanwjakob
authored andcommitted
Workaround style check false positive
1 parent 231e167 commit 2c98e45

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_kwargs_and_defaults.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def test_named_arguments(msg):
3535
# noinspection PyArgumentList
3636
kw_func2(x=5, y=10, z=12)
3737
assert excinfo.match(
38-
r'(?s)^kw_func2\(\): incompatible.*Invoked with: kwargs: ((x=5|y=10|z=12)(, |$)){3}$')
38+
r'(?s)^kw_func2\(\): incompatible.*Invoked with: kwargs: ((x=5|y=10|z=12)(, |$))'+'{3}$')
3939

4040
assert kw_func4() == "{13 17}"
4141
assert kw_func4(myList=[1, 2, 3]) == "{1 2 3}"

0 commit comments

Comments
 (0)