1
0
Fork 0
mirror of https://github.com/qurator-spk/dinglehopper.git synced 2025-07-11 11:29:57 +02:00

🐛 dinglehopper: Fix working_directory() context manager

This commit is contained in:
Gerber, Mike 2019-12-02 15:14:16 +01:00
parent 5273d10bac
commit f98c527c93
2 changed files with 10 additions and 10 deletions

View file

@ -16,7 +16,7 @@ class working_directory:
os.chdir(self.wd) os.chdir(self.wd)
def __exit__(self, etype, value, traceback): def __exit__(self, etype, value, traceback):
os.chdir(self.wd) os.chdir(self.old_wd)
def test_cli_json(tmp_path): def test_cli_json(tmp_path):

View file

@ -23,7 +23,7 @@ class working_directory:
os.chdir(self.wd) os.chdir(self.wd)
def __exit__(self, etype, value, traceback): def __exit__(self, etype, value, traceback):
os.chdir(self.wd) os.chdir(self.old_wd)
def test_ocrd_cli(tmp_path): def test_ocrd_cli(tmp_path):