Skip to content
Merged
Prev Previous commit
Next Next commit
Update tests/test_tags.py
Co-Authored-By: Brett Cannon <[email protected]>
  • Loading branch information
xuhdev and brettcannon authored Jan 24, 2020
commit ca81f77ca07a230adc3f3d401e55f3f6b15dcf9d
2 changes: 1 addition & 1 deletion tests/test_tags.py
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,7 @@ def test_linux_platforms_32bit_on_64bit_os_arm(self, is_64bit_os, is_arm, monkey
if platform.system() != "Linux" or not is_64bit_os or not is_arm:
monkeypatch.setattr(distutils.util, "get_platform", lambda: "linux_aarch64")
monkeypatch.setattr(tags, "_is_manylinux_compatible", lambda *args: False)
linux_platform = tags._linux_platforms(is_32bit=True)[-1]
linux_platform = list(tags._linux_platforms(is_32bit=True))[-1]
assert linux_platform == "linux_armv7l"

def test_linux_platforms_manylinux_unsupported(self, monkeypatch):
Expand Down