From 782c44d4c333b71ab927a2da48bf4eb1333300b2 Mon Sep 17 00:00:00 2001 From: Justin Zhang Date: Sat, 10 May 2025 14:09:46 +0300 Subject: [PATCH] tests: Style cleanup Signed-off-by: Justin Zhang --- tests/integration/deps/test_podman_compose_deps.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/integration/deps/test_podman_compose_deps.py b/tests/integration/deps/test_podman_compose_deps.py index 1569a1c..9a4bfa5 100644 --- a/tests/integration/deps/test_podman_compose_deps.py +++ b/tests/integration/deps/test_podman_compose_deps.py @@ -16,7 +16,7 @@ def compose_yaml_path(suffix=""): class TestComposeBaseDeps(unittest.TestCase, RunSubprocessMixin): def test_deps(self): try: - output, error = self.run_subprocess_assert_returncode([ + output, _ = self.run_subprocess_assert_returncode([ podman_compose_path(), "-f", compose_yaml_path(), @@ -39,7 +39,7 @@ class TestComposeBaseDeps(unittest.TestCase, RunSubprocessMixin): def test_run_nodeps(self): try: - output, error = self.run_subprocess_assert_returncode([ + output, _ = self.run_subprocess_assert_returncode([ podman_compose_path(), "-f", compose_yaml_path(), @@ -73,7 +73,7 @@ class TestComposeBaseDeps(unittest.TestCase, RunSubprocessMixin): "--detach", "sleep", ]) - output, error = self.run_subprocess_assert_returncode([ + output, _ = self.run_subprocess_assert_returncode([ podman_compose_path(), "-f", compose_yaml_path(), @@ -146,7 +146,7 @@ class TestComposeConditionalDeps(unittest.TestCase, RunSubprocessMixin): def test_deps_succeeds(self): suffix = "-conditional-succeeds" try: - output, error = self.run_subprocess_assert_returncode([ + output, _ = self.run_subprocess_assert_returncode([ podman_compose_path(), "-f", compose_yaml_path(suffix), @@ -170,7 +170,7 @@ class TestComposeConditionalDeps(unittest.TestCase, RunSubprocessMixin): def test_deps_fails(self): suffix = "-conditional-fails" try: - output, error = self.run_subprocess_assert_returncode([ + output, _ = self.run_subprocess_assert_returncode([ podman_compose_path(), "-f", compose_yaml_path(suffix),