Skip to content

Commit

Permalink
direct module import
Browse files Browse the repository at this point in the history
  • Loading branch information
SeRealMF committed Nov 16, 2023
1 parent da4b87b commit 93df471
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/test_creator.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import numpy as np
import splinepy

try:
from . import common as c
Expand Down Expand Up @@ -94,7 +95,7 @@ def test_create_revolution(self):

# Expect Failure - not a spline
with self.assertRaises(NotImplementedError):
c.splinepy.spline.helpme.create.revolved([4])
splinepy.helpme.create.revolved([4])
# Expect Failure - No rotation axis
with self.assertRaises(ValueError):
cuboid.create.revolved()
Expand Down

0 comments on commit 93df471

Please sign in to comment.