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):
116
116
t2 = [1 , 2 , 3 , 5 ]
117
117
diff = DeepDiff (t1 , t2 )
118
118
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' )
120
120
with open (path , 'wb' ) as the_file :
121
121
the_file .write (delta_content )
122
122
delta = Delta (delta_path = path )
@@ -128,7 +128,7 @@ def test_delta_dump_and_read3(self, tmp_path):
128
128
t2 = [1 , 2 , 3 , 5 ]
129
129
diff = DeepDiff (t1 , t2 )
130
130
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' )
132
132
with open (path , 'wb' ) as the_file :
133
133
the_file .write (delta_content )
134
134
with pytest .raises (ValueError ) as excinfo :
You can’t perform that action at this time.
0 commit comments