aboutsummaryrefslogtreecommitdiff
path: root/tests/space_comb.js
diff options
context:
space:
mode:
authorHolden Rohrer <holden.rohrer@gmail.com>2019-12-18 20:57:16 -0500
committerHolden Rohrer <holden.rohrer@gmail.com>2019-12-18 20:57:16 -0500
commit84d292cfdad4249885e43b7123634e5a8dd0ff1f (patch)
tree1f4b3f0b674f85dc033275fb5ad49f19aa7058c7 /tests/space_comb.js
parentcb7d31d863320db9257a619eea0422cc43bb05a4 (diff)
updated socket and space to export the main class
Diffstat (limited to 'tests/space_comb.js')
-rw-r--r--tests/space_comb.js6
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');