Skip to content

Commit

Permalink
Update license. Refs #430
Browse files Browse the repository at this point in the history
  • Loading branch information
Koen Van Daele committed Dec 19, 2017
1 parent 886733f commit fd95803
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_rdf.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def test_add_metadataset(self):
'language': ['nl', 'en', 'fr'],
'license': [
'https://creativecommons.org/licenses/by/4.0/',
'https://id.erfgoed.net/vocab/licences#GODL'
'http://data.vlaanderen.be/doc/licentie/modellicentie-gratis-hergebruik/v1.0'
]
}
g = self._get_graph()
Expand All @@ -113,7 +113,7 @@ def test_add_metadataset(self):
self.assertIn((uri, DCTERMS.language, Literal('en')), g)
self.assertIn((uri, DCTERMS.publisher, URIRef('https://id.erfgoed.net/actoren/501')), g)
self.assertIn((uri, DCTERMS.license, URIRef('https://creativecommons.org/licenses/by/4.0/')), g)
self.assertIn((uri, DCTERMS.license, URIRef('https://id.erfgoed.net/vocab/licences#GODL')), g)
self.assertIn((uri, DCTERMS.license, URIRef('http://data.vlaanderen.be/doc/licentie/modellicentie-gratis-hergebruik/v1.0')), g)
self.assertIn((uri, DCTERMS.created, Literal(date(2016,9,14))), g)

class LdfServerTests(unittest.TestCase):
Expand Down

0 comments on commit fd95803

Please sign in to comment.