Skip to content

Commit

Permalink
fix: default test project creation
Browse files Browse the repository at this point in the history
KK-1168
  • Loading branch information
nikomakela committed Aug 27, 2024
1 parent 0f3ffd2 commit ab76ba7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion projects/apps.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def _get_or_create_browser_test_project():
# Project (check for name updates)
project, _ = Project.objects.get_or_create(
year=settings.BROWSER_TEST_PROJECT_YEAR,
defaults={"translation__name": settings.BROWSER_TEST_PROJECT_NAME},
defaults={"name": settings.BROWSER_TEST_PROJECT_NAME},
)
logger.info(f"Project '{project}' retrieved or created.")

Expand Down

0 comments on commit ab76ba7

Please sign in to comment.