From 852ed58867be133cd5f4c42899a6ea35bd8a21ca Mon Sep 17 00:00:00 2001 From: Tim van Dijen Date: Mon, 30 Oct 2023 17:24:54 +0100 Subject: [PATCH] Remove dead assignment --- tests/src/Controller/DiscoPowerTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/src/Controller/DiscoPowerTest.php b/tests/src/Controller/DiscoPowerTest.php index 2740f76..bd30ffa 100644 --- a/tests/src/Controller/DiscoPowerTest.php +++ b/tests/src/Controller/DiscoPowerTest.php @@ -112,7 +112,7 @@ public function testDiscoPowerReturnUrlDisallowed(): void // All exceptions in this stage are flattened into DISCOPARAMS $this->expectException(Error\Error::class); $this->expectExceptionMessage("DISCOPARAMS"); - $r = $c->main($request); + $c->main($request); } public function testTablistJson(): void