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 12:36:41 -0500
commitfd92ebc9267f51b6b84b17a7ef6f4bde535436e1 (patch)
treed5ca7eea17dfc69d6f92092f97d0bdef60357a81
parent7397c7721c5815aaaf6f82c474f85e3e8359bb8e (diff)
downloadbuildstream-fd92ebc9267f51b6b84b17a7ef6f4bde535436e1.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