Skip to content

Commit f43fa45

Browse files
author
Peter Amstutz
committed
Fix tests
1 parent 2d0398e commit f43fa45

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_examples.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def test_self_validate(self):
5151
"schema_salad/metaschema/metaschema.yml"])
5252

5353
def test_jsonld_ctx(self):
54-
ldr, _, _ = schema_salad.schema.load_schema({
54+
ldr, _, _, _ = schema_salad.schema.load_schema({
5555
"$base": "Y",
5656
"name": "X",
5757
"$namespaces": {
@@ -111,7 +111,7 @@ def test_idmap(self):
111111
def test_examples(self):
112112
self.maxDiff = None
113113
for a in ["field_name", "ident_res", "link_res", "vocab_res"]:
114-
ldr, _, _ = schema_salad.schema.load_schema(
114+
ldr, _, _, _ = schema_salad.schema.load_schema(
115115
"schema_salad/metaschema/%s_schema.yml" % a)
116116
with open("schema_salad/metaschema/%s_src.yml" % a) as src_fp:
117117
src = ldr.resolve_all(

0 commit comments

Comments
 (0)