Clean up old TODO into history tests.

We upgraded the module a long time ago now that was referenced in the Trello card.
This commit is contained in:
John Chilton
2017-03-31 14:45:17 -04:00
parent ad2e6473bc
commit 5dcc0ed043
+1 -3
View File
@@ -106,9 +106,7 @@ class UsersApiTestCase( api.ApiTestCase ):
def __update( self, user, **new_data ):
update_url = self._api_url( "users/%s" % ( user[ "id" ] ), use_key=True )
# TODO: Awkward json.dumps required here because of https://trello.com/c/CQwmCeG6
body = json.dumps( new_data )
return put( update_url, data=body )
return put( update_url, data=new_data )
def __assert_matches_user( self, userA, userB ):
self._assert_has_keys( userB, "id", "username", "total_disk_usage" )