Skip to content
Snippets Groups Projects
Commit 23f8da7f authored by Tamas Gal's avatar Tamas Gal :speech_balloon:
Browse files

Rename testdata to data_path

parent 0cec2e97
No related branches found
No related tags found
No related merge requests found
Pipeline #12957 failed
...@@ -4,5 +4,5 @@ from pkg_resources import get_distribution, DistributionNotFound ...@@ -4,5 +4,5 @@ from pkg_resources import get_distribution, DistributionNotFound
version = get_distribution(__name__).version version = get_distribution(__name__).version
def testdata(*path_elements): def data_path(*path_elements):
return os.path.join(*path_elements) return os.path.join(*path_elements)
...@@ -2,9 +2,9 @@ ...@@ -2,9 +2,9 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
import unittest import unittest
from km3net_testdata import testdata from km3net_testdata import data_path
class TestTestData(unittest.TestCase): class TestDataPath(unittest.TestCase):
def test_access(self): def test_access(self):
assert True assert True
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment