File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -60,17 +60,17 @@ def test_that_sometimes_we_need_to_know_the_class_type(self):
6060
6161 # Sometimes we will ask you what the class type of an object is.
6262 #
63- # For example, contemplate the text string "naval ". What is its class type?
63+ # For example, contemplate the text string "navel ". What is its class type?
6464 # The koans runner will include this feedback for this koan:
6565 #
6666 # AssertionError: '-=> FILL ME IN! <=-' != <type 'str'>
6767 #
68- # So "naval ".__class__ is equal to <type 'str'>? No not quite. This
68+ # So "navel ".__class__ is equal to <type 'str'>? No not quite. This
6969 # is just what it displays. The answer is simply str.
7070 #
7171 # See for yourself:
7272
73- self .assertEqual (__ , "naval " .__class__ ) # It's str, not <type 'str'>
73+ self .assertEqual (__ , "navel " .__class__ ) # It's str, not <type 'str'>
7474
7575 # Need an illustration? More reading can be found here:
7676 #
You can’t perform that action at this time.
0 commit comments