summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorScott Gasch <[email protected]>2021-07-08 20:05:29 -0700
committerScott Gasch <[email protected]>2021-07-08 20:05:29 -0700
commitc086317533f8fdc53cd9b77863e7061b4b765f92 (patch)
treec7d0c06f39d1974c93a730cce599cc6cf011d80f /tests
parent3bc4daf1edc121cd633429187392227f2fa61885 (diff)
Clean up ACLs
Diffstat (limited to 'tests')
-rwxr-xr-xtests/simple_acl_test.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/simple_acl_test.py b/tests/simple_acl_test.py
index 7c17415..6c9b24c 100755
--- a/tests/simple_acl_test.py
+++ b/tests/simple_acl_test.py
@@ -3,6 +3,7 @@
import re
import unittest
+import bootstrap
import simple_acl as acl
@@ -44,4 +45,5 @@ class TestSimpleACL(unittest.TestCase):
if __name__ == '__main__':
+ unittest.main = bootstrap.initialize(unittest.main)
unittest.main()