We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35f9bda commit 605ac06Copy full SHA for 605ac06
tests/test_shaft.py
@@ -22,15 +22,15 @@ def test_display_01(self):
22
sh = Shaft("tests/test_datasets/shaft.iges")
23
sh.display()
24
25
+ def test_display_02(self):
26
+ sh = Shaft("tests/test_datasets/shaft.stl")
27
+ sh.display()
28
+
29
def test_exception(self):
30
sh = Shaft("tests/test_datasets/parameters.prm")
31
with self.assertRaises(Exception):
32
sh.generate_solid()
33
- def test_display_02(self):
- sh = Shaft("tests/test_datasets/shaft.stl")
- sh.display()
-
34
def test_init(self):
35
36
- assert sh.filename == "data/shaft.iges"
+ assert sh.filename == "tests/test_datasets/shaft.iges"
0 commit comments