diff --git a/test/box/sql.result b/test/box/sql.result
index 1ce121dd4eef96032508c4c34ff3a6e1e50eb7d0..6b69e3f66f445b4b22cc9070575ff38ba911cbf5 100644
--- a/test/box/sql.result
+++ b/test/box/sql.result
@@ -186,29 +186,3 @@ space:delete(0)
 space:delete(4294967295)
 ---
 ...
--- A test case for: http://bugs.launchpad.net/bugs/712456
--- Verify that when trying to access a non-existing or
--- very large space id, no crash occurs.
-conn.space[1]:select{}
----
-- error: '[string "return conn.space[1]:select{} "]:1: attempt to index a nil value'
-...
-conn.space[65537]:select{}
----
-- error: '[string "return conn.space[65537]:select{} "]:1: attempt to index a nil
-    value'
-...
-conn.space[4294967295]:select{}
----
-- error: '[string "return conn.space[4294967295]:select{} "]:1: attempt to index a
-    nil value'
-...
-box.space[0]:drop()
----
-...
-box.schema.user.drop('test')
----
-...
--- A test case for: http://bugs.launchpad.net/bugs/716683
--- Admin console should not stall on unknown command.
---admin("show status", simple=True)
diff --git a/test/box/sql.test.lua b/test/box/sql.test.lua
index a47d11570e7bbaf570042a46135b0c7bb9c65e4c..447da9ae9817e089c918ecc0833244c17549e5eb 100644
--- a/test/box/sql.test.lua
+++ b/test/box/sql.test.lua
@@ -75,17 +75,3 @@ space:select{4294967295}
 -- cleanup 
 space:delete(0)
 space:delete(4294967295)
-
--- A test case for: http://bugs.launchpad.net/bugs/712456
--- Verify that when trying to access a non-existing or
--- very large space id, no crash occurs.
-conn.space[1]:select{}
-conn.space[65537]:select{}
-conn.space[4294967295]:select{}
-
-box.space[0]:drop()
-box.schema.user.drop('test')
-
--- A test case for: http://bugs.launchpad.net/bugs/716683
--- Admin console should not stall on unknown command.
---admin("show status", simple=True)