Skip to content

Commit b21c32a

Browse files
committed
Pass assertion msg as a keyword argument in test_installation
It was originally made explicit like this, but it ended up becoming position in my last few commits. This restores that clearer aspect of how it was written before, while keeping all the other changes.
1 parent d0868bd commit b21c32a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/test_installation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ def _check_result(self, result, failure_summary):
6363
self.assertEqual(
6464
0,
6565
result.returncode,
66-
self._prepare_failure_message(result, failure_summary),
66+
msg=self._prepare_failure_message(result, failure_summary),
6767
)
6868

6969
@staticmethod

0 commit comments

Comments
 (0)