diff options
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 |
commit | 0d94a61ea4797ef77f4a9214b9b4322fc8bf9942 (patch) | |
tree | dcf94e2926c4bf741e88b5bde3f00595ac8ce6d1 /test | |
parent | cc64678ff1cee9129976c153da9d237b858f6d86 (diff) |
fix typo in CacheableObject test
Diffstat (limited to 'test')
-rw-r--r-- | test/cacheable-object.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/cacheable-object.js b/test/cacheable-object.js index e55a8eab..30083fef 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 => { |