summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2016-11-15 16:39:23 +0900
committerTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2016-11-15 16:39:23 +0900
commitd3888893e4da2cf66ec286bc38b4d20de4d5364e (patch)
tree55a08f348ff3971b62c6571db31498c0387a370b
parent34479395f01fb4c5d6fc0ad303348b79ce4ad3a2 (diff)
downloadbuildstream-d3888893e4da2cf66ec286bc38b4d20de4d5364e.tar.gz
Updated context test case to expect LoadError
-rw-r--r--tests/context/context.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/context/context.py b/tests/context/context.py
index f8d5e2292..a785b6628 100644
--- a/tests/context/context.py
+++ b/tests/context/context.py
@@ -2,7 +2,7 @@ import os
import pytest
from buildstream import Context
-from buildstream import ContextError
+from buildstream import LoadError
DATA_DIR = os.path.join(
os.path.dirname(os.path.realpath(__file__)),
@@ -70,7 +70,7 @@ def test_context_load_missing_config(context_fixture, datafiles):
datafiles.basename,
'nonexistant.yaml')
- with pytest.raises(ContextError) as exc:
+ with pytest.raises(LoadError) as exc:
context.load(conf_file)
@pytest.mark.datafiles(os.path.join(DATA_DIR))
@@ -82,7 +82,7 @@ def test_context_load_malformed_config(context_fixture, datafiles):
datafiles.basename,
'malformed.yaml')
- with pytest.raises(ContextError) as exc:
+ with pytest.raises(LoadError) as exc:
context.load(conf_file)
@pytest.mark.datafiles(os.path.join(DATA_DIR))
@@ -94,5 +94,5 @@ def test_context_load_notdict_config(context_fixture, datafiles):
datafiles.basename,
'notdict.yaml')
- with pytest.raises(ContextError) as exc:
+ with pytest.raises(LoadError) as exc:
context.load(conf_file)