summaryrefslogtreecommitdiff
path: root/tests/examples/integration-commands.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/examples/integration-commands.py')
-rw-r--r--tests/examples/integration-commands.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/examples/integration-commands.py b/tests/examples/integration-commands.py
index f4b0405e0..71e383008 100644
--- a/tests/examples/integration-commands.py
+++ b/tests/examples/integration-commands.py
@@ -12,8 +12,8 @@ DATA_DIR = os.path.join(
)
-@pytest.mark.skipif(MACHINE_ARCH != 'x86_64',
- reason='Examples are writtent for x86_64')
+@pytest.mark.skipif(MACHINE_ARCH != 'x86-64',
+ reason='Examples are writtent for x86-64')
@pytest.mark.skipif(not IS_LINUX or not HAVE_BWRAP, reason='Only available on linux with bubblewrap')
@pytest.mark.datafiles(DATA_DIR)
def test_integration_commands_build(cli, tmpdir, datafiles):
@@ -25,8 +25,8 @@ def test_integration_commands_build(cli, tmpdir, datafiles):
# Test running the executable
-@pytest.mark.skipif(MACHINE_ARCH != 'x86_64',
- reason='Examples are writtent for x86_64')
+@pytest.mark.skipif(MACHINE_ARCH != 'x86-64',
+ reason='Examples are writtent for x86-64')
@pytest.mark.skipif(not IS_LINUX or not HAVE_BWRAP, reason='Only available on linux with bubblewrap')
@pytest.mark.datafiles(DATA_DIR)
def test_integration_commands_run(cli, tmpdir, datafiles):