Skip to content

Commit

Permalink
update migration/tests to match updated seeding
Browse files Browse the repository at this point in the history
  • Loading branch information
elichad committed Aug 9, 2023
1 parent 8ddcd88 commit 0562b4c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion amy/api/tests/test_export.py
Original file line number Diff line number Diff line change
Expand Up @@ -557,7 +557,7 @@ def test_relational_fields_structure(self):
},
"involvement_type": {
"name": "GitHub Contribution",
"display_name": "Submitted a contribution to a Carpentries repository", # noqa
"display_name": "Submitted a contribution to a Carpentries repository on GitHub", # noqa
"url_required": True,
"date_required": True,
"notes_required": False,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def migrate_lesson_contributions_to_involvements(apps, schema_editor) -> None:

involvement = Involvement.objects.create(
name="GitHub Contribution",
display_name="Submitted a contribution to a Carpentries repository",
display_name="Submitted a contribution to a Carpentries repository on GitHub",
url_required=True,
date_required=True,
)
Expand Down

0 comments on commit 0562b4c

Please sign in to comment.