summaryrefslogtreecommitdiff
path: root/tests/format/optionos.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/format/optionos.py')
-rw-r--r--tests/format/optionos.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/format/optionos.py b/tests/format/optionos.py
index 92486104e..16177c4fb 100644
--- a/tests/format/optionos.py
+++ b/tests/format/optionos.py
@@ -26,7 +26,7 @@ DATA_DIR = os.path.dirname(os.path.realpath(__file__))
("Darwin", None, "Darwiny"),
# Test that explicitly provided arches dont error out
# when the `uname` reported arch is not supported
- ("AIX", "Linux", "Linuxy"),
+ ("ULTRIX", "Linux", "Linuxy"),
("HaikuOS", "SunOS", "SunOSy"),
],
)
@@ -49,7 +49,7 @@ def test_conditionals(cli, datafiles, system, value, expected):
@pytest.mark.datafiles(DATA_DIR)
def test_unsupported_arch(cli, datafiles):
- with override_platform_uname(system="AIX"):
+ with override_platform_uname(system="ULTRIX"):
project = os.path.join(datafiles.dirname, datafiles.basename, "option-os")
result = cli.run(
project=project, silent=True, args=["show", "--deps", "none", "--format", "%{vars}", "element.bst"]