diff options
Diffstat (limited to 'tests/space_comb.js')
-rw-r--r-- | tests/space_comb.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/space_comb.js b/tests/space_comb.js index 3fae916..1cde721 100644 --- a/tests/space_comb.js +++ b/tests/space_comb.js @@ -1,15 +1,15 @@ // Tests space.comb() -space = require('../space'); +const Space = require('../space'); -newspace = new space.Space(); +newspace = new Space(); newspace.adhoc('\ line1\n\ &&&&transparency&&&&\n\ \n\ afterempty\n') -otherspace = new space.Space(); +otherspace = new Space(); otherspace.adhoc('\ &&&transparency&&&\n\ testline'); |