Merge "Fix py34 error of indexing 'dict_keys' object"
This commit is contained in:
1 changed files with 1 additions and 1 deletions
@@ -1392,7 +1392,7 @@ class TestReconMiddleware(unittest.TestCase):
os.listdir = fail_os_listdir
resp = self.real_app_get_device_info()
os.listdir = self.real_listdir
device_path = resp.keys()[0]
device_path = list(resp)[0]
self.assertIsNone(resp[device_path])
def test_get_swift_conf_md5(self):
Reference in New Issue
Block a user
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.