aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/front/controller/visitor/PictureWallControllerTest.php
diff options
context:
space:
mode:
authorArthurHoaro <arthur@hoa.ro>2020-05-27 13:35:48 +0200
committerArthurHoaro <arthur@hoa.ro>2020-07-23 21:19:21 +0200
commitef00f9d2033f6de11e71bf3a909399cae6f73a9f (patch)
tree96f47312084bab73be34495eed4280110a8ff258 /tests/front/controller/visitor/PictureWallControllerTest.php
parentba43064ddb7771fc97df135a32f9b0d5e373dd36 (diff)
downloadShaarli-ef00f9d2033f6de11e71bf3a909399cae6f73a9f.tar.gz
Shaarli-ef00f9d2033f6de11e71bf3a909399cae6f73a9f.tar.zst
Shaarli-ef00f9d2033f6de11e71bf3a909399cae6f73a9f.zip
Process password change controller through Slim
Diffstat (limited to 'tests/front/controller/visitor/PictureWallControllerTest.php')
-rw-r--r--tests/front/controller/visitor/PictureWallControllerTest.php4
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/front/controller/visitor/PictureWallControllerTest.php b/tests/front/controller/visitor/PictureWallControllerTest.php
index 7ac842cb..3dc3f292 100644
--- a/tests/front/controller/visitor/PictureWallControllerTest.php
+++ b/tests/front/controller/visitor/PictureWallControllerTest.php
@@ -28,8 +28,6 @@ class PictureWallControllerTest extends TestCase
28 28
29 public function testValidControllerInvokeDefault(): void 29 public function testValidControllerInvokeDefault(): void
30 { 30 {
31 $this->createValidContainerMockSet();
32
33 $request = $this->createMock(Request::class); 31 $request = $this->createMock(Request::class);
34 $request->expects(static::once())->method('getQueryParams')->willReturn([]); 32 $request->expects(static::once())->method('getQueryParams')->willReturn([]);
35 $response = new Response(); 33 $response = new Response();
@@ -106,8 +104,6 @@ class PictureWallControllerTest extends TestCase
106 { 104 {
107 $this->expectException(ThumbnailsDisabledException::class); 105 $this->expectException(ThumbnailsDisabledException::class);
108 106
109 $this->createValidContainerMockSet();
110
111 $request = $this->createMock(Request::class); 107 $request = $this->createMock(Request::class);
112 $response = new Response(); 108 $response = new Response();
113 109