Skip to content

Commit

Permalink
Merge pull request #249 from lukpueh/teardown-test-tmpdir
Browse files Browse the repository at this point in the history
Properly tear down storage tests
  • Loading branch information
joshuagl authored Jul 2, 2020
2 parents 7531747 + 327c946 commit 22a3c4e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/test_storage.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@

import os
import tempfile
import shutil
import unittest

import securesystemslib.exceptions
Expand All @@ -45,6 +46,7 @@ def setUp(self):

def tearDown(self):
self.fileobj.close()
shutil.rmtree(self.temp_dir)


def test_exceptions(self):
Expand Down

0 comments on commit 22a3c4e

Please sign in to comment.