Fix UTs on x86

This commit is contained in:
Till Faelligen 2023-03-15 08:21:00 +01:00
parent 74dc54684b
commit 2c58bab6a8
No known key found for this signature in database
GPG Key ID: 3DF82D8AB9211D4E
1 changed files with 9 additions and 8 deletions

View File

@ -22,6 +22,12 @@ import (
"testing" "testing"
"time" "time"
"github.com/matrix-org/gomatrixserverlib"
"github.com/nats-io/nats.go"
"github.com/stretchr/testify/assert"
"go.uber.org/atomic"
"gotest.tools/v3/poll"
"github.com/matrix-org/dendrite/federationapi/producers" "github.com/matrix-org/dendrite/federationapi/producers"
rsAPI "github.com/matrix-org/dendrite/roomserver/api" rsAPI "github.com/matrix-org/dendrite/roomserver/api"
"github.com/matrix-org/dendrite/setup/config" "github.com/matrix-org/dendrite/setup/config"
@ -30,11 +36,6 @@ import (
"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"
keyAPI "github.com/matrix-org/dendrite/userapi/api" keyAPI "github.com/matrix-org/dendrite/userapi/api"
"github.com/matrix-org/gomatrixserverlib"
"github.com/nats-io/nats.go"
"github.com/stretchr/testify/assert"
"go.uber.org/atomic"
"gotest.tools/v3/poll"
) )
const ( const (
@ -427,7 +428,7 @@ func TestProcessTransactionRequestEDUReceipt(t *testing.T) {
roomID: map[string]interface{}{ roomID: map[string]interface{}{
"m.read": map[string]interface{}{ "m.read": map[string]interface{}{
"@john:kaer.morhen": map[string]interface{}{ "@john:kaer.morhen": map[string]interface{}{
"data": map[string]interface{}{ "data": map[string]int64{
"ts": 1533358089009, "ts": 1533358089009,
}, },
"event_ids": []string{ "event_ids": []string{
@ -446,7 +447,7 @@ func TestProcessTransactionRequestEDUReceipt(t *testing.T) {
roomID: map[string]interface{}{ roomID: map[string]interface{}{
"m.read": map[string]interface{}{ "m.read": map[string]interface{}{
"johnkaer.morhen": map[string]interface{}{ "johnkaer.morhen": map[string]interface{}{
"data": map[string]interface{}{ "data": map[string]int64{
"ts": 1533358089009, "ts": 1533358089009,
}, },
"event_ids": []string{ "event_ids": []string{
@ -463,7 +464,7 @@ func TestProcessTransactionRequestEDUReceipt(t *testing.T) {
roomID: map[string]interface{}{ roomID: map[string]interface{}{
"m.read": map[string]interface{}{ "m.read": map[string]interface{}{
"@john:bad.domain": map[string]interface{}{ "@john:bad.domain": map[string]interface{}{
"data": map[string]interface{}{ "data": map[string]int64{
"ts": 1533358089009, "ts": 1533358089009,
}, },
"event_ids": []string{ "event_ids": []string{