mirror of
https://github.com/matrix-org/dendrite.git
synced 2026-01-16 18:43:10 -06:00
Fix tests
This commit is contained in:
parent
1fb2ee9d2d
commit
1529bc5d1f
|
|
@ -7,10 +7,10 @@ import (
|
||||||
|
|
||||||
"github.com/matrix-org/dendrite/internal/sqlutil"
|
"github.com/matrix-org/dendrite/internal/sqlutil"
|
||||||
"github.com/matrix-org/dendrite/syncapi/storage"
|
"github.com/matrix-org/dendrite/syncapi/storage"
|
||||||
|
"github.com/matrix-org/dendrite/syncapi/synctypes"
|
||||||
"github.com/matrix-org/dendrite/syncapi/types"
|
"github.com/matrix-org/dendrite/syncapi/types"
|
||||||
"github.com/matrix-org/dendrite/test"
|
"github.com/matrix-org/dendrite/test"
|
||||||
"github.com/matrix-org/dendrite/test/testrig"
|
"github.com/matrix-org/dendrite/test/testrig"
|
||||||
"github.com/matrix-org/gomatrixserverlib"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func newSyncDB(t *testing.T, dbType test.DBType) (storage.Database, func()) {
|
func newSyncDB(t *testing.T, dbType test.DBType) (storage.Database, func()) {
|
||||||
|
|
@ -32,7 +32,7 @@ func TestFilterTable(t *testing.T) {
|
||||||
defer closeDB()
|
defer closeDB()
|
||||||
|
|
||||||
// initially create a filter
|
// initially create a filter
|
||||||
filter := &gomatrixserverlib.Filter{}
|
filter := &synctypes.Filter{}
|
||||||
filterID, err := tab.PutFilter(context.Background(), "alice", filter)
|
filterID, err := tab.PutFilter(context.Background(), "alice", filter)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatal(err)
|
t.Fatal(err)
|
||||||
|
|
@ -49,7 +49,7 @@ func TestFilterTable(t *testing.T) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// query the filter again
|
// query the filter again
|
||||||
targetFilter := &gomatrixserverlib.Filter{}
|
targetFilter := &synctypes.Filter{}
|
||||||
if err = tab.GetFilter(context.Background(), targetFilter, "alice", filterID); err != nil {
|
if err = tab.GetFilter(context.Background(), targetFilter, "alice", filterID); err != nil {
|
||||||
t.Fatal(err)
|
t.Fatal(err)
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue