6430be99be
OBS-URL: https://build.opensuse.org/package/show/systemsmanagement:saltstack/salt?expand=0&rev=194
27 lines
907 B
Diff
27 lines
907 B
Diff
From 929942b15f377df21ae076ef9e25cf83639b1850 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 9f5be295be..1074a1989f 100644
|
|
--- a/tests/unit/states/test_pip_state.py
|
|
+++ b/tests/unit/states/test_pip_state.py
|
|
@@ -445,7 +445,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.34.1
|
|
|
|
|