Skip to content

Commit

Permalink
Format with black
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark-Powers committed Dec 5, 2024
1 parent f6fdac2 commit 9d9213e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion trovi/api/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -950,7 +950,10 @@ def test_link_to_non_existent_artifact(self):
response.status_code, status.HTTP_404_NOT_FOUND, msg=response.content
)

@skipIf("sqlite" in os.getenv("DB_ENGINE"), "This test fails locally due to a difference with the sqlite3 engine")
@skipIf(
"sqlite" in os.getenv("DB_ENGINE"),
"This test fails locally due to a difference with the sqlite3 engine",
)
def test_non_unique_artifact_contents(self):
example = self.example_version.copy()
example["contents"]["urn"] = version_don_quixote_1.contents_urn
Expand Down

0 comments on commit 9d9213e

Please sign in to comment.