Skip to content

Commit

Permalink
minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Chilipp committed May 3, 2018
1 parent 0327f1a commit ab62300
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/widgets/_base_testing.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,10 @@ def tearDown(self):
plt.close('all')
for f in self.created_files:
if osp.exists(f):
os.remove(f)
try:
os.remove(f)
except Exception:
pass

# ------ New test methods -------------------------------------------------

Expand Down

0 comments on commit ab62300

Please sign in to comment.