summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2017-12-13 11:48:33 -0500
committerTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2017-12-13 11:48:33 -0500
commit1feef7c08980a635d78942e202bc93ec1fadb20e (patch)
tree4e611cd8240d85afe67cd855b8e808ec4f170e71
parentf522248cc8aa5539d037a035186617f2884343f1 (diff)
downloadbuildstream-1feef7c08980a635d78942e202bc93ec1fadb20e.tar.gz
tests/testutils/site.py: Removed HAVE_ROOT
There is no scenario worth testing where this condition is not true, removing this.
-rw-r--r--tests/testutils/site.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/testutils/site.py b/tests/testutils/site.py
index 456f6ec15..fb57c404b 100644
--- a/tests/testutils/site.py
+++ b/tests/testutils/site.py
@@ -44,5 +44,3 @@ except ProgramNotFoundError:
HAVE_LZIP = False
IS_LINUX = os.getenv('BST_FORCE_BACKEND', sys.platform).startswith('linux')
-
-HAVE_ROOT = HAVE_BWRAP or os.geteuid() == 0