1+ from __future__ import absolute_import
2+ from __future__ import print_function
13from .util import get_data
24import unittest
35import schema_salad .ref_resolver
@@ -285,7 +287,7 @@ def test_scoped_id(self):
285287 }, ra )
286288
287289 g = makerdf (None , ra , ctx )
288- print (g .serialize (format = "n3" ))
290+ print (( g .serialize (format = "n3" ) ))
289291
290292 ra , _ = ldr .resolve_all (cmap ({
291293 "location" : "foo" ,
@@ -299,7 +301,7 @@ def test_scoped_id(self):
299301 }, ra )
300302
301303 g = makerdf (None , ra , ctx )
302- print (g .serialize (format = "n3" ))
304+ print (( g .serialize (format = "n3" ) ))
303305
304306 ra , _ = ldr .resolve_all (cmap ({
305307 "id" : "foo" ,
@@ -313,7 +315,7 @@ def test_scoped_id(self):
313315 }, ra )
314316
315317 g = makerdf (None , ra , ctx )
316- print (g .serialize (format = "n3" ))
318+ print (( g .serialize (format = "n3" ) ))
317319
318320 ra , _ = ldr .resolve_all (cmap ({
319321 "location" : "foo" ,
@@ -327,7 +329,7 @@ def test_scoped_id(self):
327329 }, ra )
328330
329331 g = makerdf (None , ra , ctx )
330- print (g .serialize (format = "n3" ))
332+ print (( g .serialize (format = "n3" ) ))
331333
332334 def test_mixin (self ):
333335 base_url = "file://" + os .getcwd () + "/tests/"
0 commit comments