Skip to content

Commit

Permalink
Excludes a missing segmented polyline from testing.
Browse files Browse the repository at this point in the history
  • Loading branch information
massimo-nocentini committed Nov 6, 2023
1 parent 2626cd1 commit 29b4f4a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/Roassal3-Shapes-Tests/RSPLinesTest.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,9 @@ RSPLinesTest class >> testParameters [
| m classesToConsider |
m := ParametrizedTestMatrix new.
classesToConsider := RSAbstractLine allSubclasses select: [ :c |
(c isAbstract or: [ c = RSSegmentedPolyline ])
not ].
(c isAbstract or: [
c = RSSegmentedPolyline or: [
c = RSSegmentedBeziersPolyline ] ]) not ].
classesToConsider do: [ :cls | m addCase: { (#shapeClass -> cls) } ].
^ m
]
Expand Down

0 comments on commit 29b4f4a

Please sign in to comment.