Skip to content

Commit 1916ad3

Browse files
committed
Fix test
1 parent fa9f634 commit 1916ad3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/core/test_macros.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -695,7 +695,7 @@ def test_macro_parameter_resolution(macro_evaluator):
695695
# with the former one. This ensures we capture both.
696696
assert str(e.value.__cause__) in (
697697
"'pos_only' parameter is positional only, but was passed as a keyword",
698-
"missing a required argument: 'a1'",
698+
"missing a required argument: 'pos_only'",
699699
)
700700

701701
with pytest.raises(MacroEvalError) as e:

0 commit comments

Comments
 (0)