Skip to content

Commit

Permalink
Update JavaTests.java
Browse files Browse the repository at this point in the history
  • Loading branch information
cdimascio authored Feb 8, 2020
1 parent c42eac6 commit f0dc3dd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/test/java/tests/JavaTests.java
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,9 @@ public void iteratorOverDotenv() {
.ignoreIfMalformed()
.load();

dotenv.entries().forEach(e -> assertEquals(dotenv.get(e.getKey()), e.getValue()));
dotenv
.entries()
.forEach(e -> assertEquals(dotenv.get(e.getKey()), e.getValue()));

for (DotenvEntry e : dotenv.entries()) {
assertEquals(dotenv.get(e.getKey()), e.getValue());
Expand Down

0 comments on commit f0dc3dd

Please sign in to comment.