From 2c26792e1432b440238ea3c613254230f43f823f Mon Sep 17 00:00:00 2001
From: dboe <dboe@ipp.mpg.de>
Date: Thu, 7 May 2020 18:46:04 +0200
Subject: [PATCH] updated tests

---
 test/test_mesh3D.py      |  3 +--
 test/test_triangles3D.py | 21 ---------------------
 2 files changed, 1 insertion(+), 23 deletions(-)
 delete mode 100644 test/test_triangles3D.py

diff --git a/test/test_mesh3D.py b/test/test_mesh3D.py
index 9d0efcc..7205c43 100644
--- a/test/test_mesh3D.py
+++ b/test/test_mesh3D.py
@@ -4,7 +4,7 @@ import unittest
 import sympy  # NOQA: F401
 import os
 import sys
-from test_core import Base_Check
+from .test_core import Base_Check
 THIS_DIR = os.path.dirname(
     os.path.realpath(os.path.join(os.getcwd(), os.path.expanduser(__file__))))
 sys.path.append(os.path.normpath(os.path.join(THIS_DIR)))
@@ -32,5 +32,4 @@ class IO_Stl_test(unittest.TestCase):
 
 
 if __name__ == '__main__':
-    tfields.Mesh3D.load(os.path.join(THIS_DIR,'../data/baffle.stl'))
     unittest.main()
diff --git a/test/test_triangles3D.py b/test/test_triangles3D.py
deleted file mode 100644
index d785256..0000000
--- a/test/test_triangles3D.py
+++ /dev/null
@@ -1,21 +0,0 @@
-import tfields
-import numpy as np
-import unittest
-import sympy  # NOQA: F401
-import os
-import sys
-THIS_DIR = os.path.dirname(os.path.realpath(os.path.join(os.getcwd(), os.path.expanduser(__file__))))
-sys.path.append(os.path.normpath(os.path.join(THIS_DIR)))
-from test_core import Base_Check
-
-
-class IO_test(Base_Check, unittest.TestCase):
-    pass
-
-
-class IO_Stl_test(IO_test):
-    def setUp(self):
-        self._inst = tfields.Triangles3D.load(r'../data/baffle.stl')
-
-if __name__ == '__main__':
-    unittest.main()
\ No newline at end of file
-- 
GitLab