mirror of
https://github.com/matrix-org/dendrite.git
synced 2026-01-16 18:43:10 -06:00
Update test again
This commit is contained in:
parent
5896fbc394
commit
7ce3461ccc
|
|
@ -15,6 +15,7 @@ package transactions
|
|||
import (
|
||||
"net/http"
|
||||
"net/url"
|
||||
"path/filepath"
|
||||
"reflect"
|
||||
"strconv"
|
||||
"testing"
|
||||
|
|
@ -27,8 +28,10 @@ type fakeType struct {
|
|||
}
|
||||
|
||||
func TestCompare(t *testing.T) {
|
||||
c1 := CacheKey{"1", "2", ""}
|
||||
c2 := CacheKey{"1", "2", ""}
|
||||
u1, _ := url.Parse("/send/1?accessToken=123")
|
||||
u2, _ := url.Parse("/send/1")
|
||||
c1 := CacheKey{"1", "2", filepath.Dir(u1.Path)}
|
||||
c2 := CacheKey{"1", "2", filepath.Dir(u2.Path)}
|
||||
if !reflect.DeepEqual(c1, c2) {
|
||||
t.Fatalf("Cache keys differ: %+v <> %+v", c1, c2)
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue