File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -62,17 +62,17 @@ def test_that_sometimes_we_need_to_know_the_class_type(self):
6262
6363 # Sometimes we will ask you what the class type of an object is.
6464 #
65- # For example, contemplate the text string "naval ". What is its class type?
65+ # For example, contemplate the text string "navel ". What is its class type?
6666 # The koans runner will include this feedback for this koan:
6767 #
6868 # AssertionError: '-=> FILL ME IN! <=-' != <type 'str'>
6969 #
70- # So "naval ".__class__ is equal to <type 'str'>? No not quite. This
70+ # So "navel ".__class__ is equal to <type 'str'>? No not quite. This
7171 # is just what it displays. The answer is simply str.
7272 #
7373 # See for yourself:
7474
75- self .assertEqual (__ , "naval " .__class__ ) # It's str, not <type 'str'>
75+ self .assertEqual (__ , "navel " .__class__ ) # It's str, not <type 'str'>
7676
7777 # Need an illustration? More reading can be found here:
7878 #
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