File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -15,26 +15,26 @@ def test_assert_truth(self):
1515 #
1616 # http://bit.ly/about_asserts
1717
18- self .assertTrue (False ) # This should be true
18+ self .assertTrue (True ) # 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 (True , True )
2525
2626 def test_fill_in_values (self ):
2727 """
2828 Sometimes we will ask you to fill in the values
2929 """
30- self .assertEqual (__ , 1 + 1 )
30+ self .assertEqual (2 , 1 + 1 )
3131
3232 def test_assert_equality (self ):
3333 """
3434 To understand reality, we must compare our expectations against
3535 reality.
3636 """
37- expected_value = __
37+ expected_value = 2
3838 actual_value = 1 + 1
3939 self .assertTrue (expected_value == actual_value )
4040
You can’t perform that action at this time.
0 commit comments