Skip to content

Commit 9113c7b

Browse files
committed
Fix mock document.
1 parent d9761ab commit 9113c7b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/hermes_test/model/types/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def compact(cls, base_url: str = "http://spam.eggs/", embed_vocabulary: bool = T
4040
:returns: The rendered compact document.
4141
"""
4242
return {
43-
"@context": [cls.vocabulary(base_url) if embed_vocabulary else base_url],
43+
"@context": cls.vocabulary(base_url) if embed_vocabulary else base_url,
4444

4545
"spam": "bacon",
4646
"ham": f"{base_url}identifier",

0 commit comments

Comments
 (0)