@@ -354,7 +354,7 @@ class CommandHandlerJavacordTest extends Specification {
354354
355355 def ' asynchronous command execution should happen asynchronously' () {
356356 given :
357- def discordApi = new DiscordApiImpl (null , null , null , null , false )
357+ def discordApi = new DiscordApiImpl (null , null , null , null , null , false )
358358 message. api >> discordApi
359359 def threadFuture = new CompletableFuture ()
360360
@@ -372,7 +372,7 @@ class CommandHandlerJavacordTest extends Specification {
372372
373373 def ' asynchronous command execution should not log an error if none happened' () {
374374 given :
375- def discordApi = new DiscordApiImpl (null , null , null , null , false )
375+ def discordApi = new DiscordApiImpl (null , null , null , null , null , false )
376376 message. api >> discordApi
377377
378378 when :
@@ -394,7 +394,7 @@ class CommandHandlerJavacordTest extends Specification {
394394
395395 def ' exception during asynchronous command execution should be logged properly' () {
396396 given :
397- def discordApi = new DiscordApiImpl (null , null , null , null , false )
397+ def discordApi = new DiscordApiImpl (null , null , null , null , null , false )
398398 message. api >> discordApi
399399 def exception = new Exception ()
400400
0 commit comments