diff options
Diffstat (limited to 'tests/examples/junctions.py')
-rw-r--r-- | tests/examples/junctions.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/examples/junctions.py b/tests/examples/junctions.py index 4bd72d8a3..26fa8c350 100644 --- a/tests/examples/junctions.py +++ b/tests/examples/junctions.py @@ -16,7 +16,7 @@ DATA_DIR = os.path.join( # Test that the project builds successfully @pytest.mark.skipif(MACHINE_ARCH != 'x86-64', - reason='Examples are writtent for x86-64') + reason='Examples are written 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_build(cli, datafiles): @@ -28,7 +28,7 @@ def test_build(cli, datafiles): # Test the callHello script works as expected. @pytest.mark.skipif(MACHINE_ARCH != 'x86-64', - reason='Examples are writtent for x86-64') + reason='Examples are written 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_shell_call_hello(cli, datafiles): |