aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorTill <2353100+S7evinK@users.noreply.github.com>2022-12-08 08:24:24 +0100
committerGitHub <noreply@github.com>2022-12-08 08:24:24 +0100
commit0351618ff4e7d569e14a165be59a1a7e9e979684 (patch)
treee759d0cfd4a21a895a22dc52647a3de18ebe9126 /test
parent27a1dea5225c828ad787098aadafa83ed73c4940 (diff)
Add UserAPI util tests (#2907)
This adds some `userapi/util` tests.
Diffstat (limited to 'test')
-rw-r--r--test/testrig/base.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/testrig/base.go b/test/testrig/base.go
index 15fb5c37..7bc26a5c 100644
--- a/test/testrig/base.go
+++ b/test/testrig/base.go
@@ -108,7 +108,7 @@ func Base(cfg *config.Dendrite) (*base.BaseDendrite, nats.JetStreamContext, *nat
cfg.Global.JetStream.InMemory = true
cfg.SyncAPI.Fulltext.InMemory = true
cfg.FederationAPI.KeyPerspectives = nil
- base := base.NewBaseDendrite(cfg, "Tests")
+ base := base.NewBaseDendrite(cfg, "Tests", base.DisableMetrics)
js, jc := base.NATS.Prepare(base.ProcessContext, &cfg.Global.JetStream)
return base, js, jc
}