diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2024-04-29 13:38:29 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-29 20:38:29 +0200 |
commit | 392fe65313a94ebfd7e0f70c8f7c3c7365bcff1c (patch) | |
tree | 9a8f362beb74b79aaba0bf682d61fef701103018 /test/TestDatafile.py | |
parent | b45b9bd74612239ebc29322fc340b1bee62e7032 (diff) | |
download | lingo-apworld-392fe65313a94ebfd7e0f70c8f7c3c7365bcff1c.tar.gz lingo-apworld-392fe65313a94ebfd7e0f70c8f7c3c7365bcff1c.tar.bz2 lingo-apworld-392fe65313a94ebfd7e0f70c8f7c3c7365bcff1c.zip |
Lingo: Fix world load on frozen 3.8 (#3220)
* Lingo: Fix world load on frozen 3.8 * Fixed absolute imports in unit test * Made unpickling safer
Diffstat (limited to 'test/TestDatafile.py')
-rw-r--r-- | test/TestDatafile.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/TestDatafile.py b/test/TestDatafile.py index 9f4e9da..60acb3e 100644 --- a/test/TestDatafile.py +++ b/test/TestDatafile.py | |||
@@ -1,8 +1,8 @@ | |||
1 | import os | 1 | import os |
2 | import unittest | 2 | import unittest |
3 | 3 | ||
4 | from worlds.lingo.static_logic import HASHES | 4 | from ..static_logic import HASHES |
5 | from worlds.lingo.utils.pickle_static_data import hash_file | 5 | from ..utils.pickle_static_data import hash_file |
6 | 6 | ||
7 | 7 | ||
8 | class TestDatafile(unittest.TestCase): | 8 | class TestDatafile(unittest.TestCase): |