Skip to content

Commit 605ac06

Browse files
committed
Fixing a typo in test_shaft.py
1 parent 35f9bda commit 605ac06

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

tests/test_shaft.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@ def test_display_01(self):
2222
sh = Shaft("tests/test_datasets/shaft.iges")
2323
sh.display()
2424

25+
def test_display_02(self):
26+
sh = Shaft("tests/test_datasets/shaft.stl")
27+
sh.display()
28+
2529
def test_exception(self):
2630
sh = Shaft("tests/test_datasets/parameters.prm")
2731
with self.assertRaises(Exception):
2832
sh.generate_solid()
2933

30-
def test_display_02(self):
31-
sh = Shaft("tests/test_datasets/shaft.stl")
32-
sh.display()
33-
3434
def test_init(self):
3535
sh = Shaft("tests/test_datasets/shaft.iges")
36-
assert sh.filename == "data/shaft.iges"
36+
assert sh.filename == "tests/test_datasets/shaft.iges"

0 commit comments

Comments
 (0)