diff options
author | daurnimator <quae@daurnimator.com> | 2017-12-15 14:50:14 +1100 |
---|---|---|
committer | daurnimator <quae@daurnimator.com> | 2017-12-15 14:53:03 +1100 |
commit | b162ffe744bc407ad4035674f5c05848a460b58f (patch) | |
tree | 5d00c92294b3f562154104b269a5d6ca4d395c1e /tests/test-suite/db.js | |
parent | 55ff446d1fdd5ad5982e2ce3f7118fca8c16880b (diff) | |
download | fengari-b162ffe744bc407ad4035674f5c05848a460b58f.tar.gz fengari-b162ffe744bc407ad4035674f5c05848a460b58f.tar.bz2 fengari-b162ffe744bc407ad4035674f5c05848a460b58f.zip |
src/lobject.js: Refactor luaO_chunkid to use Uint8Array.set
Diffstat (limited to 'tests/test-suite/db.js')
-rw-r--r-- | tests/test-suite/db.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test-suite/db.js b/tests/test-suite/db.js index a2e3ce6..ff13ecb 100644 --- a/tests/test-suite/db.js +++ b/tests/test-suite/db.js @@ -64,7 +64,7 @@ test("[test-suite] db: getinfo, ...line...", function (t) { }); -test("[test-suite] db: test file ad string names truncation", function (t) { +test("[test-suite] db: test file and string names truncation", function (t) { let luaCode = ` a = "function f () end" local function dostring (s, x) return load(s, x)() end |