Skip to content

Commit

Permalink
remove decode(utf-8) (#555)
Browse files Browse the repository at this point in the history
  • Loading branch information
amilan17 authored Aug 30, 2024
1 parent 83a9503 commit 524ba03
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/check_urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,9 @@ def check_result(self, result, expected, uploads, identityURI, resourceURL):

self.assertTrue(rdflib.compare.isomorphic(result, expected),
(resourceURL + '\n' +
lbb + inboth.serialize(format='n3').decode("utf-8") +
lbr + inres.serialize(format='n3').decode("utf-8") +
lbe + inexp.serialize(format='n3').decode("utf-8")))
lbb + inboth.serialize(format='n3') +
lbr + inres.serialize(format='n3') +
lbe + inexp.serialize(format='n3')))


# Build test cases based on the TTL files within the repository,
Expand Down

0 comments on commit 524ba03

Please sign in to comment.