Skip to content

Commit a0de925

Browse files
committed
SplineTest::testSolveAndCall : Test all segments, not just first 25%
1 parent 3f18a98 commit a0de925

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/IECore/SplineTest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ def testSolveAndCall( self ) :
146146
for i in range( 0, 1000 ) :
147147

148148
# select a segment
149-
seg = int(random.uniform( 0, int(len(xv) / 4) ))
149+
seg = int( random.uniform( 0, len(xv) - 3 ) )
150150
seg -= seg % s.basis.step
151151
# evaluate an x,y point on the curve directly
152152
# ourselves

0 commit comments

Comments
 (0)