aboutsummaryrefslogtreecommitdiff
path: root/matrix/pushrules/pushrules_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'matrix/pushrules/pushrules_test.go')
-rw-r--r--matrix/pushrules/pushrules_test.go13
1 files changed, 4 insertions, 9 deletions
diff --git a/matrix/pushrules/pushrules_test.go b/matrix/pushrules/pushrules_test.go
index 73fa787..c56fd10 100644
--- a/matrix/pushrules/pushrules_test.go
+++ b/matrix/pushrules/pushrules_test.go
@@ -25,18 +25,13 @@ import (
"maunium.net/go/gomuks/matrix/pushrules"
)
-var mapExamplePushRules map[string]interface{}
-
-func init() {
- mapExamplePushRules = make(map[string]interface{})
- json.Unmarshal([]byte(JSONExamplePushRules), &mapExamplePushRules)
-}
-
func TestEventToPushRules(t *testing.T) {
event := &mautrix.Event{
- Type: "m.push_rules",
+ Type: mautrix.AccountDataPushRules,
Timestamp: 1523380910,
- Content: mapExamplePushRules,
+ Content: mautrix.Content{
+ VeryRaw: json.RawMessage(JSONExamplePushRules),
+ },
}
pushRuleset, err := pushrules.EventToPushRules(event)
assert.Nil(t, err)