diff --git a/python3/koans/about_asserts.py b/python3/koans/about_asserts.py index d17ed0cdf..af9bd09be 100644 --- a/python3/koans/about_asserts.py +++ b/python3/koans/about_asserts.py @@ -14,7 +14,7 @@ def test_assert_truth(self): # # http://bit.ly/about_asserts - self.assertTrue(False) # This should be True + self.assertTrue(True) # This should be True def test_assert_with_message(self): """