Skip to content

Commit

Permalink
Fixed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
wolph committed Dec 14, 2022
1 parent bd2d8b9 commit 3a96424
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions tests/test_multiple.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,19 @@
from stl import mesh
from stl.utils import b

_STL_FILE = b(
'''
solid test.stl
facet normal -0.014565 0.073223 -0.002897
outer loop
vertex 0.399344 0.461940 1.044090
vertex 0.500000 0.500000 1.500000
vertex 0.576120 0.500000 1.117320
endloop
endfacet
endsolid test.stl
'''.lstrip()
)
_STL_FILE = '''
solid test.stl
facet normal -0.014565 0.073223 -0.002897
outer loop
vertex 0.399344 0.461940 1.044090
vertex 0.500000 0.500000 1.500000
vertex 0.576120 0.500000 1.117320
endloop
endfacet
endsolid test.stl
'''
# This is split because the pycharm autoformatter breaks the tests otherwise
_STL_FILE = b(_STL_FILE.lstrip())


def test_single_stl(tmpdir, speedups):
Expand Down

0 comments on commit 3a96424

Please sign in to comment.