summary refs log tree commit diff stats
path: root/test/TestDatafile.py
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2024-04-29 13:38:29 -0500
committerGitHub <noreply@github.com>2024-04-29 20:38:29 +0200
commit392fe65313a94ebfd7e0f70c8f7c3c7365bcff1c (patch)
tree9a8f362beb74b79aaba0bf682d61fef701103018 /test/TestDatafile.py
parentb45b9bd74612239ebc29322fc340b1bee62e7032 (diff)
downloadlingo-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.py4
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 @@
1import os 1import os
2import unittest 2import unittest
3 3
4from worlds.lingo.static_logic import HASHES 4from ..static_logic import HASHES
5from worlds.lingo.utils.pickle_static_data import hash_file 5from ..utils.pickle_static_data import hash_file
6 6
7 7
8class TestDatafile(unittest.TestCase): 8class TestDatafile(unittest.TestCase):