Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TransactionalMap removeIfSame test fails #8238

Closed
ihsandemir opened this issue May 24, 2016 · 0 comments · Fixed by #8392
Closed

TransactionalMap removeIfSame test fails #8238

ihsandemir opened this issue May 24, 2016 · 0 comments · Fixed by #8392
Assignees
Labels
Milestone

Comments

@ihsandemir
Copy link
Contributor

The following test fails:

    @Test
    public void testRemoveIfSame() throws ExecutionException, InterruptedException {
        final HazelcastInstance instance = createHazelcastInstance();

        TransactionContext context = instance.newTransactionContext(options);
        context.beginTransaction();

        TransactionalMap<String, String> map = context.getMap("map");

        map.put("item-0", "value");

        assertTrue(map.remove("item-0", "value"));

        context.commitTransaction();
    }

We can also add a client side test for this.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging a pull request may close this issue.

4 participants