From 148deb260db0b169dcf454cf36f7194eac2e7036 Mon Sep 17 00:00:00 2001 From: Timo Hocker Date: Tue, 10 Mar 2020 10:51:01 +0100 Subject: [PATCH] formatting --- test/index.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/index.js b/test/index.js index 92b2860..e273313 100644 --- a/test/index.js +++ b/test/index.js @@ -32,9 +32,9 @@ test ('try_parse_json should fail', (t) => { }); test ('copy object', (t) => { - const obj = {foo:'bar'}; - const copy = util.copy_object(obj); + const obj = { foo: 'bar' }; + const copy = util.copy_object (obj); copy.foo = 'baz'; - t.is(copy.foo, 'baz'); - t.is(obj.foo, 'bar'); + t.is (copy.foo, 'baz'); + t.is (obj.foo, 'bar'); });