diff options
author | daurnimator <quae@daurnimator.com> | 2017-12-11 15:54:07 +1100 |
---|---|---|
committer | daurnimator <quae@daurnimator.com> | 2017-12-11 16:00:46 +1100 |
commit | 0b6489358c3971efa5ad7d05f7532d31029049ea (patch) | |
tree | c745e4d28a720c42c684a712d4e46f17db508070 /tests | |
parent | 15e5dbb494dcb013031723eee6d8b0dcd8093d2a (diff) | |
download | fengari-0b6489358c3971efa5ad7d05f7532d31029049ea.tar.gz fengari-0b6489358c3971efa5ad7d05f7532d31029049ea.tar.bz2 fengari-0b6489358c3971efa5ad7d05f7532d31029049ea.zip |
tests/lapi.js: Fix incorrect escaping
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lapi.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lapi.js b/tests/lapi.js index 5a6785d..a63ae66 100644 --- a/tests/lapi.js +++ b/tests/lapi.js @@ -383,7 +383,7 @@ test('lua_load with no chunkname', function (t) { test('lua_load and lua_call it', function (t) { let luaCode = ` - local a = "JS > Lua > JS \\o/" + local a = "JS > Lua > JS \\\\o/" return a `, L; |