Skip to content

Commit eec6da2

Browse files
author
j.s@google.com
committed
Fixing comments in response to Erics review of rev 835.
1 parent 8c475a0 commit eec6da2

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

src/gdata/test_config.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff 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:

tests/gdata_tests/live_client_test.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff 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.

0 commit comments

Comments
 (0)