aboutsummaryrefslogtreecommitdiff
path: root/src/util/codec-test.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2020-04-07 13:58:55 +0530
committerFlorian Dold <florian.dold@gmail.com>2020-04-07 13:58:55 +0530
commitfaba5e9db8e0d1fdc4845de6b504b4e2ea3ca72b (patch)
tree53bbc26d9e5d16e168e682ce808461a395e00f45 /src/util/codec-test.ts
parentfb2e2f89935240666de66e4b2c11125cb3b2943d (diff)
downloadwallet-core-faba5e9db8e0d1fdc4845de6b504b4e2ea3ca72b.tar.xz
finally make linter happy
Diffstat (limited to 'src/util/codec-test.ts')
-rw-r--r--src/util/codec-test.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/codec-test.ts b/src/util/codec-test.ts
index e25a9d3cd..b429c318c 100644
--- a/src/util/codec-test.ts
+++ b/src/util/codec-test.ts
@@ -51,7 +51,7 @@ test("basic codec", (t) => {
t.assert(res.foo === "hello");
t.throws(() => {
- const res2 = myObjCodec.decode({ foo: 123 });
+ myObjCodec.decode({ foo: 123 });
});
});