Skip to content

Commit

Permalink
do some trimming
Browse files Browse the repository at this point in the history
  • Loading branch information
evanchooly committed Jun 19, 2024
1 parent b48d354 commit f2857fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/test/java/dev/morphia/test/TemplatedTestBase.java
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ protected String loadResource(String pipelineName) {
var resource = new BufferedReader(new InputStreamReader(stream))
.lines()
.collect(joining("\n"));
return resource;
return resource.trim();
}

private List<Document> extractDocuments(String resource) {
Expand Down

0 comments on commit f2857fb

Please sign in to comment.