Skip to content

Commit b5d1484

Browse files
committed
fixes #418
1 parent d5b66b7 commit b5d1484

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_delta.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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:

0 commit comments

Comments
 (0)