Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
sdruskat committed Dec 13, 2023
1 parent 4dcfc2b commit 06dc903
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/hermes_test/commands/harvest/test_cff.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,10 @@ def codemeta_without_email():
"name": "Title"
}


@pytest.fixture
def codemeta_with_email(codemeta_without_email):
author_emails = {"Author": "[email protected]", "Second": "[email protected]", "Third": "[email protected]",}
author_emails = {"Author": "[email protected]", "Second": "[email protected]", "Third": "[email protected]"}
for author in codemeta_without_email["author"]:
author["email"] = author_emails[author["familyName"]]
return codemeta_without_email
Expand Down

0 comments on commit 06dc903

Please sign in to comment.