Skip to content

Commit

Permalink
869 checkstyle fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mpetrov committed Jul 22, 2022
1 parent 91b45bc commit 863829f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/java/com/yegor256/tojos/CachedTojosTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ void testAddClearsCache(@TempDir final Path temp) {
tojos.add("C0").set(keys[0], "v30").set(keys[1], "vv30");
final Tojos cached = new CachedTojos(tojos);
cached.select(x -> true);
cached.add("D0").set("k10", "v40").set("k20", "vv40");
cached.add("D0").set(keys[0], "v40").set(keys[1], "vv40");
MatcherAssert.assertThat(
cached.select(x -> true).size(),
Matchers.equalTo(4)
Expand All @@ -61,7 +61,7 @@ void testSelectFromCached(@TempDir final Path temp) {
tojos.add("C1").set(keys[0], "v31").set(keys[1], "vv31");
final Tojos cached = new CachedTojos(tojos);
cached.select(x -> true);
tojos.add("D1").set("k11", "v41").set("k21", "vv41");
tojos.add("D1").set(keys[0], "v41").set(keys[1], "vv41");
MatcherAssert.assertThat(
cached.select(x -> true).size(),
Matchers.equalTo(3)
Expand Down

0 comments on commit 863829f

Please sign in to comment.