Completed
Push — master ( 16088c...1f9f41 )
by Daniel
23:50
created
tests/lib/Files/Template/TemplateManagerTest.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -82,18 +82,18 @@
 block discarded – undo
82 82
 		$this->expectException(GenericFileException::class);
83 83
 
84 84
 		$fileDirectory = '/';
85
-		$filePath = $fileDirectory . str_repeat('a', 251);
85
+		$filePath = $fileDirectory.str_repeat('a', 251);
86 86
 
87 87
 		$userFolder = $this->createMock(Folder::class);
88 88
 		$userFolder->method('get')
89
-			->willReturnCallback(function ($path) use ($filePath, $fileDirectory) {
89
+			->willReturnCallback(function($path) use ($filePath, $fileDirectory) {
90 90
 				if ($path === $filePath) {
91 91
 					throw new NotFoundException();
92 92
 				}
93 93
 				return $this->createMock(Folder::class);
94 94
 			});
95 95
 		$userFolder->method('nodeExists')
96
-			->willReturnCallback(function ($path) use ($filePath, $fileDirectory) {
96
+			->willReturnCallback(function($path) use ($filePath, $fileDirectory) {
97 97
 				return $path === $fileDirectory;
98 98
 			});
99 99
 		$this->rootFolder->method('getUserFolder')
Please login to merge, or discard this patch.