From a04ae0323c80c3c1969085e427b70dd1477d7da6 Mon Sep 17 00:00:00 2001 From: David Murphy Date: Thu, 27 Jun 2024 09:55:51 -0600 Subject: [PATCH] Fix typo --- tests/pytests/pkg/integration/test_enabled_disabled.py | 2 +- tests/pytests/pkg/integration/test_salt_api.py | 2 +- tests/pytests/pkg/integration/test_salt_call.py | 2 +- tests/pytests/pkg/integration/test_salt_exec.py | 2 +- tests/pytests/pkg/integration/test_salt_grains.py | 2 +- tests/pytests/pkg/integration/test_salt_key.py | 2 +- tests/pytests/pkg/integration/test_salt_output.py | 2 +- tests/pytests/pkg/integration/test_salt_state_file.py | 2 +- tests/pytests/pkg/integration/test_version.py | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/tests/pytests/pkg/integration/test_enabled_disabled.py b/tests/pytests/pkg/integration/test_enabled_disabled.py index c73d0da29c1..16ee9c69ca0 100644 --- a/tests/pytests/pkg/integration/test_enabled_disabled.py +++ b/tests/pytests/pkg/integration/test_enabled_disabled.py @@ -2,7 +2,7 @@ import pytest from pytestskipmarkers.utils import platform pytestmark = [ - pytest.mark.unless_on_linux, + pytest.mark.skip_unless_on_linux, ] diff --git a/tests/pytests/pkg/integration/test_salt_api.py b/tests/pytests/pkg/integration/test_salt_api.py index 673ced01774..8706ed9e630 100644 --- a/tests/pytests/pkg/integration/test_salt_api.py +++ b/tests/pytests/pkg/integration/test_salt_api.py @@ -1,7 +1,7 @@ import pytest pytestmark = [ - pytest.mark.unless_on_linux, + pytest.mark.skip_unless_on_linux, ] diff --git a/tests/pytests/pkg/integration/test_salt_call.py b/tests/pytests/pkg/integration/test_salt_call.py index bbaa5fd7ff2..fe3bc1728aa 100644 --- a/tests/pytests/pkg/integration/test_salt_call.py +++ b/tests/pytests/pkg/integration/test_salt_call.py @@ -4,7 +4,7 @@ import pytest from pytestskipmarkers.utils import platform pytestmark = [ - pytest.mark.unless_on_linux, + pytest.mark.skip_unless_on_linux, ] diff --git a/tests/pytests/pkg/integration/test_salt_exec.py b/tests/pytests/pkg/integration/test_salt_exec.py index 66874c92806..cad14b6ba02 100644 --- a/tests/pytests/pkg/integration/test_salt_exec.py +++ b/tests/pytests/pkg/integration/test_salt_exec.py @@ -3,7 +3,7 @@ from sys import platform import pytest pytestmark = [ - pytest.mark.unless_on_linux, + pytest.mark.skip_unless_on_linux, ] diff --git a/tests/pytests/pkg/integration/test_salt_grains.py b/tests/pytests/pkg/integration/test_salt_grains.py index 432d2ea6872..d8da338ec2c 100644 --- a/tests/pytests/pkg/integration/test_salt_grains.py +++ b/tests/pytests/pkg/integration/test_salt_grains.py @@ -1,7 +1,7 @@ import pytest pytestmark = [ - pytest.mark.unless_on_linux, + pytest.mark.skip_unless_on_linux, ] diff --git a/tests/pytests/pkg/integration/test_salt_key.py b/tests/pytests/pkg/integration/test_salt_key.py index 29f89cdda71..4e8fb33ff7c 100644 --- a/tests/pytests/pkg/integration/test_salt_key.py +++ b/tests/pytests/pkg/integration/test_salt_key.py @@ -1,7 +1,7 @@ import pytest pytestmark = [ - pytest.mark.unless_on_linux, + pytest.mark.skip_unless_on_linux, ] diff --git a/tests/pytests/pkg/integration/test_salt_output.py b/tests/pytests/pkg/integration/test_salt_output.py index bad40b9af01..3c008774473 100644 --- a/tests/pytests/pkg/integration/test_salt_output.py +++ b/tests/pytests/pkg/integration/test_salt_output.py @@ -1,7 +1,7 @@ import pytest pytestmark = [ - pytest.mark.unless_on_linux, + pytest.mark.skip_unless_on_linux, ] diff --git a/tests/pytests/pkg/integration/test_salt_state_file.py b/tests/pytests/pkg/integration/test_salt_state_file.py index 7d2e246f3c9..8e6c98b6fc0 100644 --- a/tests/pytests/pkg/integration/test_salt_state_file.py +++ b/tests/pytests/pkg/integration/test_salt_state_file.py @@ -6,7 +6,7 @@ from pytestskipmarkers.utils import platform from saltfactories.utils.functional import MultiStateResult pytestmark = [ - pytest.mark.unless_on_linux, + pytest.mark.skip_unless_on_linux, ] diff --git a/tests/pytests/pkg/integration/test_version.py b/tests/pytests/pkg/integration/test_version.py index 863829e2c3e..00b6e983607 100644 --- a/tests/pytests/pkg/integration/test_version.py +++ b/tests/pytests/pkg/integration/test_version.py @@ -6,7 +6,7 @@ import pytest from pytestskipmarkers.utils import platform pytestmark = [ - pytest.mark.unless_on_linux, + pytest.mark.skip_unless_on_linux, ]