Merge "Remove unused None from dict.get()"

This commit is contained in:
Jenkins 2017-07-06 02:44:55 +00:00 committed by Gerrit Code Review
commit 6b2d5b6d07
1 changed files with 2 additions and 2 deletions

View File

@ -101,7 +101,7 @@ class TestAPI(test_interface.TestInterface):
fake_memcache[key] = value
def get_mem(key):
return fake_memcache.get(key, None)
return fake_memcache.get(key)
utils.init_db(self.session, numTenants, numResources, end)
@ -141,7 +141,7 @@ class TestAPI(test_interface.TestInterface):
fake_memcache[key] = value
def get_mem(key):
return fake_memcache.get(key, None)
return fake_memcache.get(key)
utils.init_db(self.session, numTenants, numResources, end)