We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8110faf + 5d5ca2b commit db4e736Copy full SHA for db4e736
tests/recipes/test_icu.py
@@ -52,13 +52,14 @@ def test_build_arch(
52
53
# We expect some calls to `sh.Command`
54
build_root = self.recipe.get_build_dir(self.arch.arch)
55
- mock_sh_command.has_calls(
+ mock_sh_command.assert_has_calls(
56
[
57
mock.call(
58
os.path.join(build_root, "source", "runConfigureICU")
59
),
60
mock.call(os.path.join(build_root, "source", "configure")),
61
- ]
+ ],
62
+ any_order=True
63
)
64
mock_ensure_dir.assert_called()
65
mock_chdir.assert_called()
0 commit comments