@@ -130,7 +130,7 @@ def test_save_restore_checkpoints(self):
130
130
gfile .GFile (os .path .join (tmp_dir , 'test_tmp' ), 'w' )
131
131
checkpoints .save_checkpoint (
132
132
tmp_dir , test_object1 , 0 , prefix = 'test_' , keep = 1 )
133
- self .assertIn ('test_0 ' , os .listdir (tmp_dir ))
133
+ self .assertIn ('test_000000000 ' , os .listdir (tmp_dir ))
134
134
new_object = checkpoints .restore_checkpoint (
135
135
tmp_dir , test_object0 , prefix = 'test_' )
136
136
jtu .check_eq (new_object , test_object1 )
@@ -153,7 +153,7 @@ def test_save_restore_checkpoints(self):
153
153
jtu .check_eq (new_object , test_object2 )
154
154
# Restore a specific path.
155
155
new_object = checkpoints .restore_checkpoint (
156
- os .path .join (tmp_dir , 'test_3 ' ), test_object0 )
156
+ os .path .join (tmp_dir , 'test_000000003 ' ), test_object0 )
157
157
jtu .check_eq (new_object , test_object2 )
158
158
# If a specific path is specified, but it does not exist, the same behavior
159
159
# as when a directory is empty should apply: the target is returned
0 commit comments