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/resolver/
Date: Mon, 03 Aug 2020 23:28:31
Message-Id: 1596497284.e0ca1855bc60925f56f625737afe117317b3278c.zmedico@gentoo
1 commit: e0ca1855bc60925f56f625737afe117317b3278c
2 Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
3 AuthorDate: Mon Aug 3 22:43:21 2020 +0000
4 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
5 CommitDate: Mon Aug 3 23:28:04 2020 +0000
6 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=e0ca1855
7
8 lib/portage/tests/resolver/test_old_dep_chain_display.py: fix whitespace
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/resolver/test_old_dep_chain_display.py | 6 +++---
14 1 file changed, 3 insertions(+), 3 deletions(-)
15
16 diff --git a/lib/portage/tests/resolver/test_old_dep_chain_display.py b/lib/portage/tests/resolver/test_old_dep_chain_display.py
17 index 8aedf5999..7ab21e8e9 100644
18 --- a/lib/portage/tests/resolver/test_old_dep_chain_display.py
19 +++ b/lib/portage/tests/resolver/test_old_dep_chain_display.py
20 @@ -1,4 +1,4 @@
21 -# Copyright 2010-2011 Gentoo Foundation
22 +# Copyright 2010-2020 Gentoo Authors
23 # Distributed under the terms of the GNU General Public License v2
24
25 from portage.tests import TestCase
26 @@ -8,8 +8,8 @@ class OldDepChainDisplayTestCase(TestCase):
27
28 def testOldDepChainDisplay(self):
29 ebuilds = {
30 - "dev-libs/A-1": { "DEPEND": "foo? ( dev-libs/B[-bar] )", "IUSE": "+foo", "EAPI": "2" },
31 - "dev-libs/A-2": { "DEPEND": "foo? ( dev-libs/C )", "IUSE": "+foo", "EAPI": "1" },
32 + "dev-libs/A-1": { "DEPEND": "foo? ( dev-libs/B[-bar] )", "IUSE": "+foo", "EAPI": "2" },
33 + "dev-libs/A-2": { "DEPEND": "foo? ( dev-libs/C )", "IUSE": "+foo", "EAPI": "1" },
34 "dev-libs/B-1": { "IUSE": "bar", "DEPEND": "!bar? ( dev-libs/D[-baz] )", "EAPI": "2" },
35 "dev-libs/C-1": { "KEYWORDS": "~x86" },
36 "dev-libs/D-1": { "IUSE": "+baz", "EAPI": "1" },