From ddcb70bd81e99f8bd469019f923bd335b59b04c1 Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Tue, 22 Jun 2021 20:41:38 +0200 Subject: [PATCH] Reference correct private variable Signed-off-by: Lukas Reschke --- apps/dav/tests/unit/Connector/PublicAuthTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/dav/tests/unit/Connector/PublicAuthTest.php b/apps/dav/tests/unit/Connector/PublicAuthTest.php index d12ec4d373f..dd924b60215 100644 --- a/apps/dav/tests/unit/Connector/PublicAuthTest.php +++ b/apps/dav/tests/unit/Connector/PublicAuthTest.php @@ -69,7 +69,7 @@ class PublicAuthTest extends \Test\TestCase { $this->shareManager = $this->getMockBuilder(IManager::class) ->disableOriginalConstructor() ->getMock(); - $this->shareManager = $this->getMockBuilder(Throttler::class) + $this->throttler = $this->getMockBuilder(Throttler::class) ->disableOriginalConstructor() ->getMock(); -- 2.39.5