diff options
author | Wim <wim@42.be> | 2020-10-21 20:35:22 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-21 20:35:22 +0200 |
commit | 1e0b4532bdb8a549e704918740601866e599c508 (patch) | |
tree | 4cbef6cf271e3572e8c673745e6c35818974dc1a /gateway/gateway_test.go | |
parent | 4f8b19c6866ae61c2ca36b7c9935669ee2089ef2 (diff) | |
download | matterbridge-msglm-1e0b4532bdb8a549e704918740601866e599c508.tar.gz matterbridge-msglm-1e0b4532bdb8a549e704918740601866e599c508.tar.bz2 matterbridge-msglm-1e0b4532bdb8a549e704918740601866e599c508.zip |
Show deprecate warnings about old tengo settings (#1271)
Diffstat (limited to 'gateway/gateway_test.go')
-rw-r--r-- | gateway/gateway_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gateway/gateway_test.go b/gateway/gateway_test.go index 2d1a1065..21700588 100644 --- a/gateway/gateway_test.go +++ b/gateway/gateway_test.go @@ -533,7 +533,7 @@ func (s *ignoreTestSuite) TestIgnoreNicks() { func BenchmarkTengo(b *testing.B) { msg := &config.Message{Username: "user", Text: "blah testing", Account: "protocol.account", Channel: "mychannel"} for n := 0; n < b.N; n++ { - err := modifyMessageTengo("bench.tengo", msg) + err := modifyInMessageTengo("bench.tengo", msg) if err != nil { return } |