summaryrefslogtreecommitdiffstats
path: root/tests/unit/loader
diff options
context:
space:
mode:
authorYujun Zhang <zhang.yujunz@zte.com.cn>2017-02-22 03:08:21 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-02-22 03:08:21 +0000
commita72b8daa8aa00be9632d56ac0770002b0caad360 (patch)
tree3a0f075f1ae2b102582c1ece96a0bd293dbb3b8b /tests/unit/loader
parenta95ed75274a7f98e8988bfbf521c29c9da021fa2 (diff)
parentb19344b16a3000180cac33e1239d62c7c6c3e5ea (diff)
Merge "Refactoring qtip.base.error"
Diffstat (limited to 'tests/unit/loader')
-rw-r--r--tests/unit/loader/yaml_file_test.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/unit/loader/yaml_file_test.py b/tests/unit/loader/yaml_file_test.py
index 17836946..0f0632c4 100644
--- a/tests/unit/loader/yaml_file_test.py
+++ b/tests/unit/loader/yaml_file_test.py
@@ -10,7 +10,7 @@
import os
import pytest
-from qtip.base.error import InvalidContent
+from qtip.base.error import InvalidContentError
from qtip.loader.yaml_file import YamlFileLoader
@@ -28,6 +28,6 @@ def test_init(yaml_root, filename, expected):
def test_invalid_content(yaml_root):
- with pytest.raises(InvalidContent) as excinfo:
+ with pytest.raises(InvalidContentError) as excinfo:
YamlFileLoader('invalid.yaml', [yaml_root])
assert 'invalid.yaml' in excinfo.value.filename