Skip to content

Commit

Permalink
fix: fixup previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
OmarIthawi committed Jan 9, 2025
1 parent 7a63ca3 commit e7f3e97
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions scripts/tests/test_release_project_sync.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ def test_translations_entry_update_translation():
translation='same translation',
)

status, updates = command.sync_translation_entry(
status, updates = command.determine_translation_updates(
translation_from_old_project, current_translation
)

Expand Down Expand Up @@ -201,7 +201,7 @@ def test_translations_entry_more_recent_review():
reviewed=True,
)

status, updates = command.sync_translation_entry(
status, updates = command.determine_translation_updates(
translation_from_main_project, release_translation
)

Expand All @@ -226,7 +226,7 @@ def test_translations_entry_dry_run():
translation='same translation',
)

status, updates = command.sync_translation_entry(
status, updates = command.determine_translation_updates(
translation_from_old_project, current_translation
)

Expand All @@ -253,7 +253,7 @@ def test_translations_entry_different_translation():
translation='another translation',
)

status, updates = command.sync_translation_entry(
status, updates = command.determine_translation_updates(
translation_from_old_project, current_translation
)

Expand Down

0 comments on commit e7f3e97

Please sign in to comment.