Skip to content

Commit

Permalink
RedissonBucketReactiveTest fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikita committed Dec 8, 2015
1 parent 0287372 commit d84b986
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/test/java/org/redisson/RedissonBucketReactiveTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public void testSetExist() {
sync(bucket.set(value));
Assert.assertEquals(value, sync(bucket.get()));

Assert.assertTrue(sync(bucket.exists()));
Assert.assertTrue(sync(bucket.isExists()));
}

@Test
Expand All @@ -87,11 +87,11 @@ public void testSetDeleteNotExist() {
sync(bucket.set(value));
Assert.assertEquals(value, sync(bucket.get()));

Assert.assertTrue(sync(bucket.exists()));
Assert.assertTrue(sync(bucket.isExists()));

bucket.delete();

Assert.assertFalse(sync(bucket.exists()));
Assert.assertFalse(sync(bucket.isExists()));
}

@Test
Expand Down

0 comments on commit d84b986

Please sign in to comment.