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/util/eventloop/
Date: Mon, 03 Aug 2020 21:42:20
Message-Id: 1596489954.b58a8bd5fac549a398df23106d5aa77a58f6082a.zmedico@gentoo
1 commit: b58a8bd5fac549a398df23106d5aa77a58f6082a
2 Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
3 AuthorDate: Mon Aug 3 20:20:31 2020 +0000
4 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
5 CommitDate: Mon Aug 3 21:25:54 2020 +0000
6 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=b58a8bd5
7
8 lib/portage/tests/util/eventloop/test_call_soon_fifo.py: drop unused-import
9
10 * Drop unused-import
11 * Update copyright
12
13 Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
14 Signed-off-by: Zac Medico <zmedico <AT> gentoo.org>
15
16 lib/portage/tests/util/eventloop/test_call_soon_fifo.py | 4 +---
17 1 file changed, 1 insertion(+), 3 deletions(-)
18
19 diff --git a/lib/portage/tests/util/eventloop/test_call_soon_fifo.py b/lib/portage/tests/util/eventloop/test_call_soon_fifo.py
20 index f970c67a1..2b809c2e1 100644
21 --- a/lib/portage/tests/util/eventloop/test_call_soon_fifo.py
22 +++ b/lib/portage/tests/util/eventloop/test_call_soon_fifo.py
23 @@ -1,14 +1,12 @@
24 -# Copyright 2017 Gentoo Foundation
25 +# Copyright 2017-2020 Gentoo Authors
26 # Distributed under the terms of the GNU General Public License v2
27
28 import functools
29 import random
30
31 -from portage import os
32 from portage.tests import TestCase
33 from portage.util._eventloop.global_event_loop import global_event_loop
34
35 -
36 class CallSoonFifoTestCase(TestCase):
37
38 def testCallSoonFifo(self):