Stop overwriting reserved term

`dir` is a reserved instruction term in python, so this patch
avoiding to assing a value to it.

Change-Id: If780c4ffb72808b834e25a396665f17bd8383870
This commit is contained in:
Kota Tsuyuzaki 2019-02-27 12:52:06 +09:00
parent 13e7f3641e
commit a30a477755
1 changed files with 2 additions and 2 deletions

View File

@ -142,8 +142,8 @@ class TestReplicatorFunctions(ReplProbeTest):
for files in test_node_files_list:
self.assertIn(files, new_files_list[0])
for dir in test_node_dir_list:
self.assertIn(dir, new_dir_list[0])
for directory in test_node_dir_list:
self.assertIn(directory, new_dir_list[0])
break
except Exception:
if time.time() - begin > 60: