Skip to content

Commit 2412a55

Browse files
authored
Fix test_tripwire_uname_get_machine on macOS (#270)
1 parent c818579 commit 2412a55

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/test_rospkg_os_detect.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,7 @@ def test_OsDetector():
404404
def test_tripwire_uname_get_machine():
405405
from rospkg.os_detect import uname_get_machine
406406
retval = uname_get_machine()
407-
assert retval in [None, 'aarch64', 'armv7l', 'armv8l', 'i386', 'i686', 'ppc', 'ppc64', 'ppc64le', 'riscv32', 'riscv64', 's390', 's390x', 'x86_64']
407+
assert retval in [None, 'aarch64', 'arm64', 'armv7l', 'armv8l', 'i386', 'i686', 'ppc', 'ppc64', 'ppc64le', 'riscv32', 'riscv64', 's390', 's390x', 'x86_64']
408408

409409

410410
def test_tripwire_rhel():

0 commit comments

Comments
 (0)