wu-sheng commented on a change in pull request #4936:
URL: https://github.com/apache/skywalking/pull/4936#discussion_r443167876



##########
File path: 
test/e2e/e2e-test/src/test/java/org/apache/skywalking/e2e/simple/SimpleE2E.java
##########
@@ -126,11 +132,12 @@ void setUp() throws Exception {
     public void tearDown() {
         trafficController.stop();
     }
-
+     
     @RetryableTest
     void services() throws Exception {
-        final List<Service> services = graphql.services(new 
ServicesQuery().start(startTime).end(now()));
+        List<Service> services = graphql.services(new 
ServicesQuery().start(startTime).end(now()));
 
+        services = services.stream().filter(s -> 
!s.getLabel().equals("oap-server")).collect(Collectors.toList());

Review comment:
       What is this for?




----------------------------------------------------------------
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.

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


Reply via email to