Fixing up some more tests

Even though this should be done in here really :P
This commit is contained in:
Mike Helmick 2013-07-18 21:04:39 -04:00
parent a1ee2a93ad
commit a04a7c155c

View file

@ -366,10 +366,10 @@ class TwythonAPITestCase(unittest.TestCase):
def test_create_update_destroy_list_add_remove_list_members(self):
"""Test create a list, adding and removing members then
deleting the list succeeds"""
the_list = self.api.create_list(name='Stuff')
the_list = self.api.create_list(name='Stuff %s' % int(time.time()))
list_id = the_list['id_str']
self.api.update_list(list_id=list_id, name='Stuff Renamed')
self.api.update_list(list_id=list_id, name='Stuff Renamed %s' % int(time.time()))
screen_names = ['johncena', 'xbox']
# Multi add/delete members