Skip to content

Commit

Permalink
fix go-leia unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
reinkrul committed Oct 23, 2023
1 parent 15d2662 commit 20535f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion storage/leia_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ func newStoreInDir(t *testing.T, testDir string, backupConfig LeiaBackupConfigur
backupStorePath := path.Join(testDir, "vcr", "backup-private-credentials.db")
backupStore, err := bbolt.CreateBBoltStore(backupStorePath)
require.NoError(t, err)
leiaStore, err := leia.NewStore(issuerStorePath)
leiaStore, err := leia.NewStore(issuerStorePath, leia.WithDocumentLoader(jsonld.NewTestJSONLDManager(t).DocumentLoader()))
require.NoError(t, err)
store, err := NewKVBackedLeiaStore(leiaStore, backupStore)
require.NoError(t, err)
Expand Down

0 comments on commit 20535f9

Please sign in to comment.