We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ec0930 commit a4cb4feCopy full SHA for a4cb4fe
tabled/tests/util.py
@@ -12,12 +12,12 @@ def local_text(*path):
12
return local_posix(*path).read_text()
13
14
15
-test_data_path = ("tests", "data")
16
-test_data_posix = local_posix(*test_data_path)
+_test_data_path = ("tests", "data")
+_test_data_posix = local_posix(*_test_data_path)
17
18
19
-def test_data(name, text=False):
20
- name_posix = test_data_posix.joinpath(name)
+def _test_data(name, text=False):
+ name_posix = _test_data_posix.joinpath(name)
21
if not text:
22
return name_posix.read_bytes()
23
else:
0 commit comments