« get me outta code hell

fix typo in CacheableObject test - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
diff options
context:
space:
mode:
author(quasar) nebula <qznebula@protonmail.com>2023-03-21 19:50:54 -0300
committer(quasar) nebula <qznebula@protonmail.com>2023-03-21 19:50:54 -0300
commit0d94a61ea4797ef77f4a9214b9b4322fc8bf9942 (patch)
treedcf94e2926c4bf741e88b5bde3f00595ac8ce6d1
parentcc64678ff1cee9129976c153da9d237b858f6d86 (diff)
fix typo in CacheableObject test
-rw-r--r--test/cacheable-object.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/cacheable-object.js b/test/cacheable-object.js
index e55a8ea..30083fe 100644
--- a/test/cacheable-object.js
+++ b/test/cacheable-object.js
@@ -100,11 +100,11 @@ test(`CacheableObject combined update & expose (no transform)`, t => {
 
   t.plan(2);
 
-  t.directory = 'the-world-revolving';
-  t.is(t.directory, 'the-world-revolving');
+  obj.directory = 'the-world-revolving';
+  t.is(obj.directory, 'the-world-revolving');
 
-  t.directory = 'chaos-king';
-  t.is(t.directory, 'chaos-king');
+  obj.directory = 'chaos-king';
+  t.is(obj.directory, 'chaos-king');
 });
 
 test(`CacheableObject combined update & expose (basic transform)`, t => {