Skip to content

Commit

Permalink
[FIX] linter warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
aricart committed Mar 26, 2024
1 parent 5227aad commit 5d402a2
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions jetstream/tests/kv_test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2021-2023 The NATS Authors
* Copyright 2021-2024 The NATS Authors
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
Expand All @@ -21,7 +21,6 @@ import {
Empty,
NatsConnection,
NatsConnectionImpl,
NatsError,
nuid,
parseSemVer,
QueuedIterator,
Expand Down Expand Up @@ -2020,7 +2019,7 @@ Deno.test("kv - bind no info", async () => {

const d = deferred();
nc.subscribe("$JS.API.STREAM.INFO.>", {
callback: (_err, msg) => {
callback: () => {
d.reject(new Error("saw stream info"));
},
});
Expand Down

0 comments on commit 5d402a2

Please sign in to comment.