vlsi commented on code in PR #6386:
URL: https://github.com/apache/jmeter/pull/6386#discussion_r1938439611


##########
src/dist-check/src/test/java/org/apache/jmeter/junit/JMeterTest.java:
##########
@@ -581,7 +581,8 @@ static Stream<Serializable> serializableObjects() throws 
Throwable {
         return getObjects(Serializable.class)
                 .stream()
                 .map(Serializable.class::cast)
-                .filter(o -> !o.getClass().getName().endsWith("_Stub"));
+                .filter(o -> !o.getClass().getName().endsWith("_Stub"))
+                .filter(o -> 
o.getClass().getName().startsWith("org.apache.jmeter."));

Review Comment:
   Could you please clarify what is the reason to add this filter?



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to