Skip to content

Commit

Permalink
spotless apply
Browse files Browse the repository at this point in the history
  • Loading branch information
evanchooly committed Nov 10, 2023
1 parent 5d75f50 commit 1fe58e3
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@
import org.bson.Document;
import org.jetbrains.annotations.NotNull;
import org.testng.Assert;
import org.testng.annotations.AfterClass;

import static java.lang.String.format;
import static java.util.Arrays.stream;
Expand All @@ -48,7 +47,7 @@ public AggregationTest() {
.codecProvider(new ZDTCodecProvider()));
}

// @AfterClass
// @AfterClass
public void testCoverage() {
var type = getClass();
// src/test/resources/dev/morphia/test/aggregation/expressions/bitAnd
Expand All @@ -58,8 +57,8 @@ public void testCoverage() {
var resourceFolder = new File("src/test/resources/%s/%s".formatted(path.replace('.', '/'), operatorName));

List<File> list = Arrays.stream(resourceFolder.list())
.map(s -> new File(resourceFolder, s))
.toList();
.map(s -> new File(resourceFolder, s))
.toList();

List<String> examples = list.stream()
.filter(d -> new File(d, "pipeline.json").exists())
Expand Down

0 comments on commit 1fe58e3

Please sign in to comment.