diff --git a/tests/sample_test.py b/tests/sample_test.py index 787b817ad71096df18265792c51d4ec07716ef66..37597765d2da794514630e9e10b1995ec4d326eb 100644 --- a/tests/sample_test.py +++ b/tests/sample_test.py @@ -45,8 +45,8 @@ class TestBasicFunction(unittest.TestCase): stlPath = os.path.abspath(os.getcwd()) + "\\tests\\sample_stl_sphere_BIN.stl" from AmpScan.core import AmpObject Amp = AmpObject(stlPath) - #with self.assertRaises(TypeError): - #Amp.planarTrim([], []) + with self.assertRaises(TypeError): + Amp.planarTrim([], plane=[]) if __name__ == '__main__':