Skip to content

Commit 7a978d0

Browse files
committed
Merge pull request gregmalcolm#124 from adityagupta679/patch-1
Updating Comments.
2 parents 045d5f6 + 18c6653 commit 7a978d0

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

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
"""

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)