Skip to content

Commit 6d37213

Browse files
Updating Comments.
It should be True instead of true. A user can write true by modifying the argument "False" in lines 18 and 24 . However that wont work , because the right keyword is "True". Hence the proposed change.
1 parent 045d5f6 commit 6d37213

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

python3/koans/about_asserts.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ def test_assert_truth(self):
1414
#
1515
# http://bit.ly/about_asserts
1616

17-
self.assertTrue(False) # This should be true
17+
self.assertTrue(False) # This should be True
1818

1919
def test_assert_with_message(self):
2020
"""
2121
Enlightenment may be more easily achieved with appropriate messages.
2222
"""
23-
self.assertTrue(False, "This should be true -- Please fix this")
23+
self.assertTrue(False, "This should be True -- Please fix this")
2424

2525
def test_fill_in_values(self):
2626
"""

0 commit comments

Comments
 (0)