7a9a0ba90f
- The test_debian test now uses port 80 for ubuntu keyserver - Fix too frequent systemd service restart in test_system test - Added: * fix-test_debian-to-work-in-our-infrastructure-676.patch * fix-test_system-flaky-setup_teardown-fn.patch * fix-deprecated-code-677.patch OBS-URL: https://build.opensuse.org/package/show/systemsmanagement:saltstack/salt?expand=0&rev=255
27 lines
907 B
Diff
27 lines
907 B
Diff
From c37992e305978e95da1ac0a40a8142f578271320 Mon Sep 17 00:00:00 2001
|
|
From: Victor Zhestkov <35733135+vzhestkov@users.noreply.github.com>
|
|
Date: Mon, 8 Nov 2021 17:43:02 +0300
|
|
Subject: [PATCH] Fix traceback.print_exc calls for test_pip_state (#432)
|
|
|
|
---
|
|
tests/unit/states/test_pip_state.py | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/tests/unit/states/test_pip_state.py b/tests/unit/states/test_pip_state.py
|
|
index 5e4b6e0af1..981ad46a13 100644
|
|
--- a/tests/unit/states/test_pip_state.py
|
|
+++ b/tests/unit/states/test_pip_state.py
|
|
@@ -442,7 +442,7 @@ class PipStateInstallationErrorTest(TestCase):
|
|
sys.stdout.flush()
|
|
sys.exit(2)
|
|
except Exception as exc:
|
|
- traceback.print_exc(exc, file=sys.stdout)
|
|
+ traceback.print_exc(file=sys.stdout)
|
|
sys.stdout.flush()
|
|
sys.exit(3)
|
|
sys.exit(0)
|
|
--
|
|
2.39.2
|
|
|
|
|