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/xpak/
Date: Mon, 03 Aug 2020 23:28:23
Message-Id: 1596497281.7d6c1bd14d4884c3a300337c2965ca33aff3e061.zmedico@gentoo
1 commit: 7d6c1bd14d4884c3a300337c2965ca33aff3e061
2 Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
3 AuthorDate: Mon Aug 3 22:43:08 2020 +0000
4 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
5 CommitDate: Mon Aug 3 23:28:01 2020 +0000
6 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=7d6c1bd1
7
8 lib/portage/tests/xpak/test_decodeint.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/xpak/test_decodeint.py | 4 ++--
14 1 file changed, 2 insertions(+), 2 deletions(-)
15
16 diff --git a/lib/portage/tests/xpak/test_decodeint.py b/lib/portage/tests/xpak/test_decodeint.py
17 index 2da573598..5eb82410c 100644
18 --- a/lib/portage/tests/xpak/test_decodeint.py
19 +++ b/lib/portage/tests/xpak/test_decodeint.py
20 @@ -1,5 +1,5 @@
21 # xpak/test_decodeint.py
22 -# Copright Gentoo Foundation 2006
23 +# Copyright 2006-2020 Gentoo Authors
24 # Portage Unit Testing Functionality
25
26 from portage.tests import TestCase
27 @@ -8,7 +8,7 @@ from portage.xpak import decodeint, encodeint
28 class testDecodeIntTestCase(TestCase):
29
30 def testDecodeInt(self):
31 -
32 +
33 for n in range(1000):
34 self.assertEqual(decodeint(encodeint(n)), n)