Remove LRU cache

This commit is contained in:
George Drummond
2019-01-02 11:39:08 -05:00
parent aee61e856d
commit c274ad6d54
2 changed files with 4 additions and 24 deletions

View File

@@ -1,14 +1,5 @@
import pytest
from atst.utils.localization import (
translate,
load_cached_translations_file,
LocalizationInvalidKeyError,
)
def test_loading_cached_translations_file_returns_the_file_contents():
file_name = "translations.yaml"
assert load_cached_translations_file(file_name) == open(file_name).read()
from atst.utils.localization import translate, LocalizationInvalidKeyError
def test_looking_up_existing_key():