Repository: ignite Updated Branches: refs/heads/master 138a3aad2 -> 45bb1ac95
ignite-2971 Enabled tests Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/45bb1ac9 Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/45bb1ac9 Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/45bb1ac9 Branch: refs/heads/master Commit: 45bb1ac95a9385f9a03388427cd1df25e9993c42 Parents: 138a3aa Author: sboikov <[email protected]> Authored: Fri Nov 4 16:36:05 2016 +0300 Committer: sboikov <[email protected]> Committed: Fri Nov 4 16:36:05 2016 +0300 ---------------------------------------------------------------------- .../processors/cache/WithKeepBinaryCacheFullApiTest.java | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/45bb1ac9/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/WithKeepBinaryCacheFullApiTest.java ---------------------------------------------------------------------- diff --git a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/WithKeepBinaryCacheFullApiTest.java b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/WithKeepBinaryCacheFullApiTest.java index 1954a8d..3e6b0b0 100644 --- a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/WithKeepBinaryCacheFullApiTest.java +++ b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/WithKeepBinaryCacheFullApiTest.java @@ -459,11 +459,7 @@ public class WithKeepBinaryCacheFullApiTest extends IgniteCacheConfigVariationsA for (TransactionConcurrency conc : TransactionConcurrency.values()) { for (TransactionIsolation isolation : TransactionIsolation.values()) { - // TODO IGNITE-2971: delete this if when the issue will be fixed. - if (conc == TransactionConcurrency.OPTIMISTIC && isolation == TransactionIsolation.SERIALIZABLE) - continue; - - info(">>>>> Executing test using explicite txs [concurrency=" + conc + ", isolation=" + isolation + "]"); + info(">>>>> Executing test using explicit txs [concurrency=" + conc + ", isolation=" + isolation + "]"); checkInvokeTx(conc, isolation); @@ -671,10 +667,6 @@ public class WithKeepBinaryCacheFullApiTest extends IgniteCacheConfigVariationsA for (TransactionConcurrency conc : TransactionConcurrency.values()) { for (TransactionIsolation isolation : TransactionIsolation.values()) { - // TODO IGNITE-2971: delete this if when the issue will be fixed. - if (conc == TransactionConcurrency.OPTIMISTIC && isolation == TransactionIsolation.SERIALIZABLE) - continue; - checkInvokeAsyncTx(conc, isolation); jcache().removeAll();
