Skip to content

Commit 4d0def3

Browse files
GarkGarciarocky
authored andcommitted
Fixed import issues
1 parent 155c08f commit 4d0def3

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

test/test_general_yaml_sanity.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22

3-
from util import yaml_data
3+
from test.util import yaml_data
44
import unicodedata
55

66
def check_attr_is_invertible(attr: str):

test/test_has_unicode_inverse_sanity.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22

3-
from util import yaml_data, json_data
3+
from test.util import yaml_data, json_data
44

55
def test_has_unicode_inverse_sanity():
66
inverses = set()

test/test_letterlikes_sanity.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from util import yaml_data, json_data
1+
from test.util import yaml_data, json_data
22

33
def test_letterlikes_sanity():
44
letterlikes = json_data["letterlikes"]

test/test_roundtrip.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from mathics_scanner.characters import replace_wl_with_plain_text as wl_to_unicode
22
from mathics_scanner.characters import replace_unicode_with_wl as unicode_to_wl
3-
from util import yaml_data, json_data
3+
from test.util import yaml_data, json_data
44

55

66
def test_roundtrip():

test/test_wl_to_ascii.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# -*- coding: utf-8 -*-
22

3-
from util import yaml_data
3+
from mathics_scanner.characters import replace_wl_with_plain_text
4+
from test.util import yaml_data
45

56
def wl_to_ascii(wl_input: str) -> str:
67
return replace_wl_with_plain_text(wl_input, use_unicode=False)

0 commit comments

Comments
 (0)