Gentoo Archives: gentoo-commits

From: Zac Medico <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/portage:master commit in: lib/portage/tests/
Date: Thu, 06 Aug 2020 07:02:54
Message-Id: 1596693469.ccd978c092504bc67e5333ab90a76a3f634aad4b.zmedico@gentoo
1 commit: ccd978c092504bc67e5333ab90a76a3f634aad4b
2 Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 5 23:51:56 2020 +0000
4 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
5 CommitDate: Thu Aug 6 05:57:49 2020 +0000
6 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=ccd978c0
7
8 lib/portage/tests/runTests.py: fix multiple-imports
9
10 Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
11 Signed-off-by: Zac Medico <zmedico <AT> gentoo.org>
12
13 lib/portage/tests/runTests.py | 7 ++++---
14 1 file changed, 4 insertions(+), 3 deletions(-)
15
16 diff --git a/lib/portage/tests/runTests.py b/lib/portage/tests/runTests.py
17 index d4d1f7c76..9514abebe 100755
18 --- a/lib/portage/tests/runTests.py
19 +++ b/lib/portage/tests/runTests.py
20 @@ -1,14 +1,15 @@
21 #!/usr/bin/python -bWd
22 # runTests.py -- Portage Unit Test Functionality
23 -# Copyright 2006-2014 Gentoo Foundation
24 +# Copyright 2006-2020 Gentoo Authors
25 # Distributed under the terms of the GNU General Public License v2
26
27 -import os, sys
28 -import os.path as osp
29 import grp
30 +import os
31 +import os.path as osp
32 import platform
33 import pwd
34 import signal
35 +import sys
36
37 def debug_signal(signum, frame):
38 import pdb