From dbc4d10ddf340052f6c9e004a5bbc462f6a95dfc Mon Sep 17 00:00:00 2001 From: Raul Ferreira Fuentes Date: Mon, 11 Apr 2022 11:58:36 +0200 Subject: [PATCH] Fix naming scheme Signed-off-by: Raul Ferreira Fuentes --- tests/unit/Notification/NotifierTest.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/unit/Notification/NotifierTest.php b/tests/unit/Notification/NotifierTest.php index da6e3348d..52edf7dd4 100644 --- a/tests/unit/Notification/NotifierTest.php +++ b/tests/unit/Notification/NotifierTest.php @@ -345,11 +345,11 @@ class NotifierTest extends \Test\TestCase { * @return Stack|MockObject */ private function buildMockStack(int $boardId = 999) { - $mock_stack = $this->getMockBuilder(Stack::class) + $mockStack = $this->getMockBuilder(Stack::class) ->addMethods(['getBoardId']) ->getMock(); - $mock_stack->method('getBoardId')->willReturn($boardId); - return $mock_stack; + $mockStack->method('getBoardId')->willReturn($boardId); + return $mockStack; } }