8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2cbc145 commit 44bf867Copy full SHA for 44bf867
20_password/Makefile
@@ -1,4 +1,4 @@
1
.PHONY: test
2
3
test:
4
- pytest -xv test.py
+ pytest -xv test.py unit.py
20_password/test.py
@@ -8,8 +8,6 @@
8
from subprocess import getstatusoutput
9
10
prg = './password.py'
11
-input1 = 'exercises.csv'
12
-input2 = 'silly-exercises.csv'
13
14
15
# --------------------------------------------------
20_password/unit.py
@@ -26,6 +26,6 @@ def test_l33t():
26
"""Test l33t"""
27
28
random.seed(1)
29
- assert (l33t('Money') == 'm0N3Y{')
30
- assert (l33t('Dollars') == 'D0ll4r5`')
+ assert l33t('Money') == 'moNeY{'
+ assert l33t('Dollars') == 'D0ll4r5`'
31
random.seed(None)
0 commit comments