Skip to content

Commit

Permalink
nit
Browse files Browse the repository at this point in the history
  • Loading branch information
atakavci committed Oct 15, 2024
1 parent d39cc0b commit ef8d4a0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public void cacheNotEmptyTest() {
Cache cache = jedis.getCache();
control.set("foo", "bar");
assertEquals(0, cache.getSize());
assertEquals("bar", (jedis.get("foo")));
assertEquals("bar", jedis.get("foo"));
assertEquals(1, cache.getSize());
}
}
Expand Down

0 comments on commit ef8d4a0

Please sign in to comment.