Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
MothScientist committed Dec 10, 2024
1 parent 2719178 commit 0509d07
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_fill_cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,12 +73,12 @@ def test_fill_localization_cache_001(self):
f'after_res_list_lang = {after_res_list_lang}'
)
self.assertTrue(
after_res_json < (before_res_json / 2),
after_res_json < before_res_json,
f'before_res_json = {before_res_json}\n'
f'after_res_json = {after_res_json}'
)
self.assertTrue(
after_res_translation < (before_res_translation / 2),
after_res_translation < before_res_translation,
f'before_res_translation = {before_res_translation}\n'
f'after_res_translation = {after_res_translation}'
)
Expand Down

0 comments on commit 0509d07

Please sign in to comment.