Index: /applications/editors/josm/plugins/pt_assistant/src/org/openstreetmap/josm/plugins/pt_assistant/validation/PTAssistantValidatorTest.java
===================================================================
--- /applications/editors/josm/plugins/pt_assistant/src/org/openstreetmap/josm/plugins/pt_assistant/validation/PTAssistantValidatorTest.java	(revision 33427)
+++ /applications/editors/josm/plugins/pt_assistant/src/org/openstreetmap/josm/plugins/pt_assistant/validation/PTAssistantValidatorTest.java	(revision 33428)
@@ -406,5 +406,5 @@
      *            route relation
      */
-    private void storeCorrectRouteSegments(Relation r,
+    public void storeCorrectRouteSegments(Relation r,
             PTRouteDataManager manager, StopToWayAssigner assigner) {
         if (manager.getPTStops().size() > 1) {
Index: /applications/editors/josm/plugins/pt_assistant/test/unit/org/openstreetmap/josm/plugins/pt_assistant/validation/SegmentCheckerTest.java
===================================================================
--- /applications/editors/josm/plugins/pt_assistant/test/unit/org/openstreetmap/josm/plugins/pt_assistant/validation/SegmentCheckerTest.java	(revision 33427)
+++ /applications/editors/josm/plugins/pt_assistant/test/unit/org/openstreetmap/josm/plugins/pt_assistant/validation/SegmentCheckerTest.java	(revision 33428)
@@ -34,10 +34,9 @@
         SegmentChecker segmentChecker = new SegmentChecker(route, test);
         segmentChecker.performStopByStopTest();
-        assertEquals(SegmentChecker.getCorrectSegmentCount(), 27);
-        assertEquals(segmentChecker.getErrors().size(), 0);
-
-
-
-
+        //since 33425 storing correct segments only of continuous routes
+        test.storeCorrectRouteSegments(route,
+                segmentChecker.getManager(), segmentChecker.getAssigner());
+        assertEquals(27, SegmentChecker.getCorrectSegmentCount());
+        assertEquals(0, segmentChecker.getErrors().size());
     }
 }
