diff options
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | tests/test-suite/attrib.js (renamed from tests/test-suite/inprogress/attrib.js) | 6 |
2 files changed, 4 insertions, 4 deletions
@@ -53,6 +53,7 @@ IRC: #fengari on freenode - [x] C API - [x] Auxiliary library - [ ] Run [Lua test suite](https://github.com/lua/tests) + - [x] `attrib.lua` - [x] `bitwise.lua` (16/16) - [x] `calls.lua` (32/32) - [x] `closure.lua` (16/16) @@ -72,7 +73,6 @@ IRC: #fengari on freenode - [ ] `tpack.lua` (20/32) - [ ] `utf8.lua` (14/20) - [ ] `api.lua` - - [ ] `attrib.lua` - [ ] `big.lua` - [ ] `code.lua` - [ ] `db.lua` diff --git a/tests/test-suite/inprogress/attrib.js b/tests/test-suite/attrib.js index b5926b7..ca23d26 100644 --- a/tests/test-suite/inprogress/attrib.js +++ b/tests/test-suite/attrib.js @@ -4,9 +4,9 @@ const test = require('tape'); global.WEB = false; -const lua = require('../../../src/lua.js'); -const lauxlib = require('../../../src/lauxlib.js'); -const lualib = require('../../../src/lualib.js'); +const lua = require('../../src/lua.js'); +const lauxlib = require('../../src/lauxlib.js'); +const lualib = require('../../src/lualib.js'); test("[test-suite] attrib: testing require", function (t) { |