Skip to content

Commit fc65b52

Browse files
committed
Added test_if_then_elif_else_statements
1 parent cef768d commit fc65b52

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

python2/koans/about_control_statements.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ def test_if_then_statements(self):
2020
self.assertEqual(__, result)
2121

2222
def test_if_then_elif_else_statements(self):
23-
result = 'default value'
2423
if False:
2524
result = 'first value'
2625
elif True:

0 commit comments

Comments
 (0)