We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0114153 + a082ab5 commit 61c2203Copy full SHA for 61c2203
schema_salad/tests/test_errors.py
@@ -27,5 +27,5 @@ def test_errors(self):
27
load_and_validate(document_loader, avsc_names,
28
unicode(get_data("tests/"+t)), True)
29
except ValidationException as e:
30
- print "\n", e
+ print("\n", e)
31
raise
schema_salad/tests/test_fetch.py
@@ -52,6 +52,6 @@ def test_cache(self):
52
loader = schema_salad.ref_resolver.Loader({})
53
foo = "file://%s/foo.txt" % os.getcwd()
54
loader.cache.update({foo: "hello: foo"})
55
- print loader.cache
+ print(loader.cache)
56
self.assertEqual({"hello": "foo"}, loader.resolve_ref("foo.txt")[0])
57
self.assertTrue(loader.check_exists(foo))
0 commit comments