diff options
| author | 2019-11-10 22:14:10 -0500 | |
|---|---|---|
| committer | 2019-11-10 22:14:10 -0500 | |
| commit | 3f168e82fc6b60ff8878a7539ad49aa2336025cc (patch) | |
| tree | 08a09e527edf46f238e816aa316144bd7ef5c246 /test/test_postprocessor.py | |
| parent | 82eae732c8dec3e14cfae90fe34987f9a3aa984d (diff) | |
| parent | 0c73e982fa596da07f23b377621ab894a9e64884 (diff) | |
Update upstream source from tag 'upstream/1.11.1'
Update to upstream version '1.11.1'
with Debian dir f73a42d5b98e3bf9f053d0329cbfe78bf5248d2e
Diffstat (limited to 'test/test_postprocessor.py')
| -rw-r--r-- | test/test_postprocessor.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_postprocessor.py b/test/test_postprocessor.py index 78b9838..0ab89db 100644 --- a/test/test_postprocessor.py +++ b/test/test_postprocessor.py @@ -327,7 +327,7 @@ class ZipTest(BasePostprocessorTest): self.assertEqual(len(pp.zfile.NameToInfo), 3) # close file - pp.finalize() + pp.run_final(self.pathfmt, 0) # reopen to check persistence with zipfile.ZipFile(pp.zfile.filename) as file: @@ -360,7 +360,7 @@ class ZipTest(BasePostprocessorTest): pp.prepare(self.pathfmt) pp.run(self.pathfmt) - pp.finalize() + pp.run_final(self.pathfmt, 0) self.assertEqual(pp.zfile.write.call_count, 3) for call in pp.zfile.write.call_args_list: |
