Skip to content

Commit

Permalink
Fix uuid in factory being the uuid module, not a nice string
Browse files Browse the repository at this point in the history
  • Loading branch information
dragon-dxw committed Jan 7, 2025
1 parent ae8eb27 commit 4a55d79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion judgments/tests/factories.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def build(cls, identifier_uuid=None, uri="/ml_example_url.xml", slug="uksc/1979/
return IdentifierResolutions(
[
IdentifierResolution(
identifier_uuid=f"id-{uuid}",
identifier_uuid=f"id-{identifier_uuid}",
document_uri=MarkLogicDocumentURIString(uri),
identifier_slug=DocumentURIString(slug),
document_published=True,
Expand Down

0 comments on commit 4a55d79

Please sign in to comment.