Commit Diff


commit - 4756e345771c2dee8b7ac0fef511999a5e4b64d3
commit + 261e6fe247dd29637a91fa302b72daab99589f22
blob - 80f8b6e7a65d2b8f0cae499f9462427cfaf980c5
blob + 2bb8aee00f9a1b161108116af9151966d515221a
--- test/tarantool/tarantool_test.lua
+++ test/tarantool/tarantool_test.lua
@@ -92,20 +92,3 @@ g.test_cas_register = function()
     t.assert_equals(err, nil)
     t.assert_equals(ok, true)
 end
-
-g.test_rw_register_memcached = function()
-    local r = rw_register.ops.r
-    local w = rw_register.ops.w
-    local test_options = {
-        threads = 5,
-        nodes = {
-            '127.0.0.1:11211',
-        },
-    }
-    local ok, err = runner.run_test({
-        client = rw_register.client,
-        generator = gen.cycle(gen.iter({ r, w })):take(1000),
-    }, test_options)
-    t.assert_equals(err, nil)
-    t.assert_equals(ok, true)
-end