Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
darrachequesne committed Feb 22, 2024
1 parent ff13003 commit 97c90fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/connection-state-recovery.ts
Expand Up @@ -221,11 +221,11 @@ describe("connection state recovery", () => {
const httpServer = createServer().listen(0);

class DummyAdapter extends Adapter {
override persistSession(session) {
persistSession(session) {
expect().fail();
}

override restoreSession(pid, offset) {
restoreSession(pid, offset) {
expect().fail();
return Promise.reject("should not happen");
}
Expand Down

0 comments on commit 97c90fe

Please sign in to comment.