Skip to content

Commit

Permalink
Update type assertion
Browse files Browse the repository at this point in the history
  • Loading branch information
acoburn committed Jun 1, 2019
1 parent 25558ac commit 15e9e5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_container.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def test_post_rdf(baseurl):
assert 200 == r.status_code
assert "application/ld+json" == r.headers['content-type']
d = r.json()
assert "http://example.com/TestResource" == d['@type']
assert "http://example.com/TestResource" == d['@type'] or "http://example.com/TestResource" in d['@type']

r = requests.get(baseurl, headers={"accept":"application/ld+json"})
d = r.json()
Expand Down

0 comments on commit 15e9e5b

Please sign in to comment.