diff --git a/mod/box/box.lua b/mod/box/box.lua
index 0ca9ec380bbd336faa464113db3c6ba5278abcb8..e180e3770b6099ec2c56944aec5fc950509497d0 100644
--- a/mod/box/box.lua
+++ b/mod/box/box.lua
@@ -123,7 +123,7 @@ function box.on_reload_configuration()
         return space.index[ino]:select_range(limit, ...)
     end
     space_mt.select_limit = function(space, ino, offset, limit, ...)
-	return box.select_limit(space.n, ino, offset, limit, ...)
+        return box.select_limit(space.n, ino, offset, limit, ...)
     end
     space_mt.insert = function(space, ...) return box.insert(space.n, ...) end
     space_mt.update = function(space, ...) return box.update(space.n, ...) end
diff --git a/test/box/lua.result b/test/box/lua.result
index 149674fdf354cc985e9096b6c4b9c0c0fb775675..b915d91bc09478243fd3ddbbdec39667dec36952 100644
--- a/test/box/lua.result
+++ b/test/box/lua.result
@@ -17,13 +17,14 @@ lua for n in pairs(box) do print('  - box.', n) end
   - box.cfg
   - box.on_reload_configuration
   - box.update
-  - box.process
-  - box.delete
   - box.insert
+  - box.select_limit
+  - box.delete
+  - box.replace
   - box.select
   - box.index
   - box.unpack
-  - box.replace
+  - box.process
   - box.select_range
   - box.pack
 ...