From f5b95eeabdc3206461eb36a22a6adf6ad64104c7 Mon Sep 17 00:00:00 2001 From: Benjamin Brahmer Date: Wed, 8 Jan 2025 11:41:46 +0100 Subject: [PATCH] wip --- tests/Unit/Config/FetcherConfigTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Unit/Config/FetcherConfigTest.php b/tests/Unit/Config/FetcherConfigTest.php index cee7f3fd5..935576a6b 100644 --- a/tests/Unit/Config/FetcherConfigTest.php +++ b/tests/Unit/Config/FetcherConfigTest.php @@ -139,8 +139,8 @@ public function testProxyPortPreserved() $this->sysconfig->expects($this->exactly(2)) ->method('getSystemValue') ->willReturnMap([ - ['poxy', 'http://192.168.178.1:80'], - ['proxyuserpwd', null] + ['poxy', null, 'http://192.168.178.1:80'], + ['proxyuserpwd', null , null] ]); $this->class = new FetcherConfig($this->config, $this->sysconfig, $this->appmanager, $this->logger);