summaryrefslogtreecommitdiff
path: root/src/util/codec-test.ts
diff options
context:
space:
mode:
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 });
});
});