File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -68,7 +68,8 @@ def get(self):
6868 value = sys .argv [i ].split ('=' )[1 ]
6969 elif sys .argv [i ] == '--%s' % self .name :
7070 value = sys .argv [i + 1 ]
71- # If it was not on the command line, ask the user to input the value.
71+ # If the param was not on the command line, ask the user to input the
72+ # value.
7273 # In order for this to prompt the user, the default value for the option
7374 # must be None.
7475 if value is None :
Original file line number Diff line number Diff line change @@ -69,7 +69,6 @@ def entry_from_string_wrapper(response):
6969 conf .options .get_value ('blogid' )),
7070 converter = entry_from_string_wrapper , http_request = http_request )
7171 self .assertEqual (entry .title .text , 'test from python BloggerTest' )
72- # TODO: uncomment once server bug is fixed
7372 self .assertEqual (entry .content .text , 'This is only a test.' )
7473
7574 # Edit the test entry.
@@ -84,7 +83,6 @@ def entry_from_string_wrapper(response):
8483 edited_entry = self .client .request ('PUT' , edit_link ,
8584 converter = entry_from_string_wrapper , http_request = http_request )
8685 self .assertEqual (edited_entry .title .text , 'Edited' )
87- # TODO: uncomment once server bug is fixed
8886 self .assertEqual (edited_entry .content .text , entry .content .text )
8987
9088 # Delete the test entry from the blog.
You can’t perform that action at this time.
0 commit comments