aboutsummaryrefslogtreecommitdiff
path: root/tests/space_search.js
diff options
context:
space:
mode:
Diffstat (limited to 'tests/space_search.js')
-rw-r--r--tests/space_search.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/space_search.js b/tests/space_search.js
index fffdcc7..14ec174 100644
--- a/tests/space_search.js
+++ b/tests/space_search.js
@@ -1,8 +1,8 @@
// Tests space.search
-const space = require('../space')
+const Space = require('../space')
-let text = new space.Space();
+let text = new Space();
text.adhoc('\
\n\
jarvis\n\
@@ -10,7 +10,7 @@ text.adhoc('\
jarvis \
');
-let line = new space.Space();
+let line = new Space();
line.adhoc('jarvis');
console.log(text.search(line))