Skip to content

Commit 18c6653

Browse files
Updating comments.
1 parent 6d37213 commit 18c6653

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

python2/koans/about_asserts.py

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

18-
self.assertTrue(False) # This should be true
18+
self.assertTrue(False) # This should be True
1919

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

2626
def test_fill_in_values(self):
2727
"""

0 commit comments

Comments
 (0)