X-Git-Url: https://git.pterodactylus.net/?p=Sone.git;a=blobdiff_plain;f=src%2Ftest%2Fkotlin%2Fnet%2Fpterodactylus%2Fsone%2Ffcp%2FSoneCommandTest.kt;h=f34b19cd66057c7f018daef0e62b954c994552ac;hp=b02aa9e53015fcb2875d7f029e23476cc3fcd5b9;hb=914d5522692e7714ba5bdefb002fedc8e293f5fc;hpb=b32c81368c80e92de1d9bc2e8fdb635d251ecfa2 diff --git a/src/test/kotlin/net/pterodactylus/sone/fcp/SoneCommandTest.kt b/src/test/kotlin/net/pterodactylus/sone/fcp/SoneCommandTest.kt index b02aa9e..f34b19c 100644 --- a/src/test/kotlin/net/pterodactylus/sone/fcp/SoneCommandTest.kt +++ b/src/test/kotlin/net/pterodactylus/sone/fcp/SoneCommandTest.kt @@ -40,12 +40,12 @@ abstract class SoneCommandTest { protected fun executeCommandAndExpectFcpException() { expectedException.expect(FcpException::class.java) - command.execute(parameters, null, null) + command.execute(parameters) } protected fun requestWithoutAnyParameterResultsInFcpException() { expectedException.expect(FcpException::class.java) - command.execute(parameters, null, null) + command.execute(parameters) } protected fun requestWithEmptySoneParameterResultsInFcpException() {