aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/compat53/tests/testmod.c
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/compat53/tests/testmod.c')
-rw-r--r--vendor/compat53/tests/testmod.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/vendor/compat53/tests/testmod.c b/vendor/compat53/tests/testmod.c
index a0d2e2a..cd56e76 100644
--- a/vendor/compat53/tests/testmod.c
+++ b/vendor/compat53/tests/testmod.c
@@ -152,7 +152,8 @@ static int test_tointeger (lua_State *L) {
lua_pushnil(L);
else
lua_pushinteger(L, n);
- return 1;
+ lua_pushinteger(L, lua_tointeger(L, 1));
+ return 2;
}
static int test_len (lua_State *L) {
@@ -225,9 +226,9 @@ static int test_uservalue (lua_State *L) {
int ui = lua_gettop(L);
lua_newtable(L);
lua_setuservalue(L, ui);
- lua_getuservalue(L, ui);
+ lua_pushinteger(L, lua_getuservalue(L, ui));
(void)udata;
- return 1;
+ return 2;
}
static int test_upvalues (lua_State *L) {