Skip to content

Commit

Permalink
fix broken test
Browse files Browse the repository at this point in the history
  • Loading branch information
jcs224 committed Oct 13, 2024
1 parent 215fa87 commit 457c16a
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
13 changes: 13 additions & 0 deletions deno.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/store/deno/DenoSqliteStore.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Store from '../Store.ts'
import { SessionData } from '../../Session.ts'
import { DB } from 'https://deno.land/x/sqlite@v3.8/mod.ts'
import { DB } from 'https://deno.land/x/sqlite@v3.9.1/mod.ts'

export class DenoSqliteStore implements Store {
db: DB
Expand Down
2 changes: 1 addition & 1 deletion test/deno/MakeStore.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Store, CookieStore, MemoryStore } from '../../mod.ts'
import { DenoKvStore } from '../../src/store/deno/DenoKvStore.ts'
import { DenoSqliteStore } from '../../src/store/deno/DenoSqliteStore.ts'
import { DB } from 'https://deno.land/x/sqlite@v3.8/mod.ts'
import { DB } from 'https://deno.land/x/sqlite@v3.9.1/mod.ts'

export async function MakeDenoStore(storeDriver: string | undefined): Promise<Store | CookieStore> {
let store: Store | CookieStore
Expand Down

0 comments on commit 457c16a

Please sign in to comment.