Skip to content

Commit

Permalink
Backport PR #10240: Fix Shutdown Error in Test App (#10264)
Browse files Browse the repository at this point in the history
Co-authored-by: Afshin Taylor Darian <git@darian.af>
  • Loading branch information
meeseeksmachine and afshin committed May 18, 2021
1 parent c362e2a commit 2badf55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jupyterlab/tests/test_app.py
Expand Up @@ -126,7 +126,7 @@ def stop(self):
self.path_patch.stop()
try:
self.test_dir.cleanup()
except PermissionError as e:
except (OSError, PermissionError) as e:
pass

def __enter__(self):
Expand Down

0 comments on commit 2badf55

Please sign in to comment.