git.99rst.org
/
redacted-XKCD-password-generator.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
| inline |
side by side
(parent:
28e3649
)
Reformat continuation lines for consistent 4-column indentation.
author
Ben Finney
<redacted>
Sat, 2 Dec 2017 02:29:44 +0000
(13:29 +1100)
committer
Ben Finney
<redacted>
Sat, 2 Dec 2017 02:29:44 +0000
(13:29 +1100)
tests/test_xkcdpass.py
patch
|
blob
|
history
diff --git
a/tests/test_xkcdpass.py
b/tests/test_xkcdpass.py
index 0124c44deea1d36d6f86968006b9e7a95d0ef08a..33e61ceb3747eb5a0d0c699ce025a2da03f069a4 100644
(file)
--- a/
tests/test_xkcdpass.py
+++ b/
tests/test_xkcdpass.py
@@
-33,9
+33,11
@@
class XkcdPasswordTests(unittest.TestCase):
def test_commandlineCount(self):
count = 5
- result = subprocess.check_output(
- ["python", "xkcdpass/xkcd_password.py", "-w", WORDFILE,
- "-c", str(count)])
+ result = subprocess.check_output([
+ "python", "xkcdpass/xkcd_password.py",
+ "-w", WORDFILE,
+ "-c", str(count),
+ ])
self.assertTrue(result.count(b"\n"), count)
def test_delim(self):
git clone https://git.99rst.org/PROJECT