From 0d94a61ea4797ef77f4a9214b9b4322fc8bf9942 Mon Sep 17 00:00:00 2001 From: "(quasar) nebula" Date: Tue, 21 Mar 2023 19:50:54 -0300 Subject: fix typo in CacheableObject test --- test/cacheable-object.js | 8 ++++---- 1 file 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 => { -- cgit 1.3.0-6-gf8a5