Skip to content

Commit

Permalink
#5341 disable test
Browse files Browse the repository at this point in the history
  • Loading branch information
pnatashap committed Apr 9, 2024
1 parent 2ac235e commit b75fa5e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

import java.lang.reflect.Field;

import java.util.ArrayList;
import java.util.List;
import java.util.stream.Collectors;

import static com.epam.jdi.light.elements.pageobjects.annotations.objects.FillFromAnnotationRules.fieldHasAnnotation;

Expand Down Expand Up @@ -49,7 +49,7 @@ public String headerLocator() {
*/
@Override
public List<ICoreElement> items() {
return new ArrayList<>(core().finds(itemLocator));
return core().finds(itemLocator).stream().collect(Collectors.toList());
}

@Override
Expand Down

0 comments on commit b75fa5e

Please sign in to comment.