From fa547197e85bca000add93fdbc28ac8d4e6e14d4 Mon Sep 17 00:00:00 2001 From: Michael Kaufmann Date: Sun, 27 Nov 2022 15:38:35 +0100 Subject: [PATCH] fix server-side version-check response message check Signed-off-by: Michael Kaufmann --- tests/Froxlor/FroxlorTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Froxlor/FroxlorTest.php b/tests/Froxlor/FroxlorTest.php index dd07d9f4..1719256d 100644 --- a/tests/Froxlor/FroxlorTest.php +++ b/tests/Froxlor/FroxlorTest.php @@ -21,7 +21,7 @@ class FroxlorTest extends TestCase $result = json_decode($json_result, true)['data']; $this->assertEquals(0, $result['isnewerversion']); if (defined('DEV_FROXLOR') && DEV_FROXLOR == 1) { - $this->assertEquals("You already have the latest testing version of Froxlor installed.", $result['additional_info']); + $this->assertEquals("You already have the latest testing-version of Froxlor installed.", $result['additional_info']); } else { $this->assertEquals("You already have the latest version of Froxlor installed.", $result['additional_info']); }