From bf334f6c58d12f052387becf618276e5b8bd86cf Mon Sep 17 00:00:00 2001 From: Sander van der Heijden Date: Fri, 29 Nov 2024 11:30:37 +0100 Subject: [PATCH] FDP-2551 ~ Fixes unit test Signed-off-by: Sander van der Heijden --- .../command/resulthandler/RebootCommandResultHandlerTest.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/src/test/kotlin/org/gxf/crestdeviceservice/command/resulthandler/RebootCommandResultHandlerTest.kt b/application/src/test/kotlin/org/gxf/crestdeviceservice/command/resulthandler/RebootCommandResultHandlerTest.kt index 76302588..22c8804b 100644 --- a/application/src/test/kotlin/org/gxf/crestdeviceservice/command/resulthandler/RebootCommandResultHandlerTest.kt +++ b/application/src/test/kotlin/org/gxf/crestdeviceservice/command/resulthandler/RebootCommandResultHandlerTest.kt @@ -68,7 +68,7 @@ class RebootCommandResultHandlerTest { fun hasSucceededTestSource(): Stream = Stream.of( Arguments.of(listOf("INIT", "WDR"), "0", true), - Arguments.of(listOf("INIT"), "0", false), + Arguments.of(listOf("INIT"), "0", true), Arguments.of(listOf("WDR"), "0", false), Arguments.of(listOf("PSK:TMP", "PSK:SET"), "!PSK:######;PSK:######SET", false), )