diff options
author | Tristan Van Berkom <tristan.vanberkom@codethink.co.uk> | 2017-12-13 11:49:39 -0500 |
---|---|---|
committer | Tristan Van Berkom <tristan.vanberkom@codethink.co.uk> | 2017-12-13 11:49:39 -0500 |
commit | 44a49070c07433c99e6d9745f61479a21bbc31fd (patch) | |
tree | fe2c0da15f3a60dfcec858c895875ed1601ff78f /tests/frontend/overlaps.py | |
parent | 1feef7c08980a635d78942e202bc93ec1fadb20e (diff) | |
download | buildstream-early-logging.tar.gz |
Adapting test cases to expect logs in stderrearly-logging
And also adapted them to remove any occurrences of HAVE_ROOT.
Diffstat (limited to 'tests/frontend/overlaps.py')
-rw-r--r-- | tests/frontend/overlaps.py | 6 |
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 |