Skip to content

Commit fdf2856

Browse files
committed
fixup tests
1 parent 1665598 commit fdf2856

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

tests/pypi/whl_installer/platform_test.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,17 +34,17 @@ def test_can_get_specific_from_string(self):
3434

3535
def test_can_get_all_for_py_version(self):
3636
cp39 = Platform.all(minor_version=9)
37-
self.assertEqual(18, len(cp39), f"Got {cp39}")
37+
self.assertEqual(21, len(cp39), f"Got {cp39}")
3838
self.assertEqual(cp39, Platform.from_string("cp39_*"))
3939

4040
def test_can_get_all_for_os(self):
4141
linuxes = Platform.all(OS.linux, minor_version=9)
42-
self.assertEqual(6, len(linuxes))
42+
self.assertEqual(7, len(linuxes))
4343
self.assertEqual(linuxes, Platform.from_string("cp39_linux_*"))
4444

4545
def test_can_get_all_for_os_for_host_python(self):
4646
linuxes = Platform.all(OS.linux)
47-
self.assertEqual(6, len(linuxes))
47+
self.assertEqual(7, len(linuxes))
4848
self.assertEqual(linuxes, Platform.from_string("linux_*"))
4949

5050
def test_specific_version_specializations(self):
@@ -102,6 +102,7 @@ def test_osx_specializations(self):
102102
Platform(os=OS.osx, arch=Arch.x86_32),
103103
Platform(os=OS.osx, arch=Arch.aarch64),
104104
Platform(os=OS.osx, arch=Arch.ppc),
105+
Platform(os=OS.osx, arch=Arch.ppc64le),
105106
Platform(os=OS.osx, arch=Arch.s390x),
106107
Platform(os=OS.osx, arch=Arch.arm),
107108
]

0 commit comments

Comments
 (0)