We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a275a1f commit 7bd1d81Copy full SHA for 7bd1d81
assignments/assignments/final/test-3.py
@@ -27,7 +27,7 @@ def test(num, cmd):
27
if any('unexpected trap' in i or 'cpu0: panic' in i for i in lines):
28
raise Exception()
29
30
- if any('Enter password:' in i for i in lines) and \
+ if any('Enter password:'.lower() in i.lower() for i in lines) and \
31
any('init: starting sh' in i for i in lines):
32
print('correct password was accepted')
33
save_results(
0 commit comments