Fixes Benchmark tests

This commit is contained in:
Vitor Pamplona
2023-10-27 14:01:12 -04:00
parent 92a39c4305
commit 8fab00300a
2 changed files with 4 additions and 4 deletions
@@ -36,14 +36,14 @@ class GiftWrapReceivingBenchmark {
return ChatMessageEvent.create( return ChatMessageEvent.create(
msg = "Hi there! This is a test message", msg = "Hi there! This is a test message",
to = to, to = to,
privateKey = sender.privKey!!,
subject = "Party Tonight", subject = "Party Tonight",
replyTos = emptyList(), replyTos = emptyList(),
mentions = emptyList(), mentions = emptyList(),
zapReceiver = null, zapReceiver = null,
markAsSensitive = true, markAsSensitive = true,
zapRaiserAmount = 10000, zapRaiserAmount = 10000,
geohash = null geohash = null,
keyPair = sender
) )
} }
@@ -35,14 +35,14 @@ class GiftWrapSigningBenchmark {
return ChatMessageEvent.create( return ChatMessageEvent.create(
msg = "Hi there! This is a test message", msg = "Hi there! This is a test message",
to = to, to = to,
privateKey = sender.privKey!!,
subject = "Party Tonight", subject = "Party Tonight",
replyTos = emptyList(), replyTos = emptyList(),
mentions = emptyList(), mentions = emptyList(),
zapReceiver = null, zapReceiver = null,
markAsSensitive = true, markAsSensitive = true,
zapRaiserAmount = 10000, zapRaiserAmount = 10000,
geohash = null geohash = null,
keyPair = sender
) )
} }