mirror of
https://github.com/qurator-spk/dinglehopper.git
synced 2025-07-27 11:19:55 +02:00
🐛 dinglehopper: Fix working_directory() context manager
This commit is contained in:
parent
5273d10bac
commit
f98c527c93
2 changed files with 10 additions and 10 deletions
|
@ -16,7 +16,7 @@ class working_directory:
|
|||
os.chdir(self.wd)
|
||||
|
||||
def __exit__(self, etype, value, traceback):
|
||||
os.chdir(self.wd)
|
||||
os.chdir(self.old_wd)
|
||||
|
||||
|
||||
def test_cli_json(tmp_path):
|
||||
|
|
|
@ -23,7 +23,7 @@ class working_directory:
|
|||
os.chdir(self.wd)
|
||||
|
||||
def __exit__(self, etype, value, traceback):
|
||||
os.chdir(self.wd)
|
||||
os.chdir(self.old_wd)
|
||||
|
||||
|
||||
def test_ocrd_cli(tmp_path):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue