File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -116,7 +116,7 @@ def test_delta_dump_and_read2(self, tmp_path):
116116 t2 = [1 , 2 , 3 , 5 ]
117117 diff = DeepDiff (t1 , t2 )
118118 delta_content = Delta (diff ).dumps ()
119- path = os .path .join (' tmp_path, delta_test2.delta' )
119+ path = os .path .join (tmp_path , ' delta_test2.delta' )
120120 with open (path , 'wb' ) as the_file :
121121 the_file .write (delta_content )
122122 delta = Delta (delta_path = path )
@@ -128,7 +128,7 @@ def test_delta_dump_and_read3(self, tmp_path):
128128 t2 = [1 , 2 , 3 , 5 ]
129129 diff = DeepDiff (t1 , t2 )
130130 delta_content = Delta (diff ).dumps ()
131- path = os .path .join (' tmp_path, delta_test2.delta' )
131+ path = os .path .join (tmp_path , ' delta_test2.delta' )
132132 with open (path , 'wb' ) as the_file :
133133 the_file .write (delta_content )
134134 with pytest .raises (ValueError ) as excinfo :
You can’t perform that action at this time.
0 commit comments