summaryrefslogtreecommitdiff
path: root/tests/frontend/overlaps.py
diff options
context:
space:
mode:
authorTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2017-12-13 11:49:39 -0500
committerTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2017-12-13 12:36:41 -0500
commit683a6d406aa91d1cf51e0fd6b1adf3f1ff77eac6 (patch)
tree09acc4c0d48d6b2d522a118ca271eb770aae3506 /tests/frontend/overlaps.py
parentfd92ebc9267f51b6b84b17a7ef6f4bde535436e1 (diff)
downloadbuildstream-683a6d406aa91d1cf51e0fd6b1adf3f1ff77eac6.tar.gz
Adapting test cases to expect logs in stderr
And also adapted them to remove any occurrences of HAVE_ROOT.
Diffstat (limited to 'tests/frontend/overlaps.py')
-rw-r--r--tests/frontend/overlaps.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/frontend/overlaps.py b/tests/frontend/overlaps.py
index cc7c08fa6..4ef5657fb 100644
--- a/tests/frontend/overlaps.py
+++ b/tests/frontend/overlaps.py
@@ -17,6 +17,6 @@ def test_overlaps(cli, datafiles):
assert result.exit_code == 0
print(result.output)
- assert "/file1: three.bst above one.bst" in result.output
- assert "/file2: two.bst above three.bst above one.bst" in result.output
- assert "/file3: two.bst above three.bst" in result.output
+ assert "/file1: three.bst above one.bst" in result.stderr
+ assert "/file2: two.bst above three.bst above one.bst" in result.stderr
+ assert "/file3: two.bst above three.bst" in result.stderr