Completed
Push — develop ( eb0aa2...d05fcc )
by Žilvinas
03:41
created
tests/DocumentTypeGuesserTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@  discard block
 block discarded – undo
8 8
     public function testPdfGuess()
9 9
     {
10 10
         $obj = new DocumentTypeGuesser();
11
-        $type = $obj->guess(__DIR__ . '/data/document.pdf');
11
+        $type = $obj->guess(__DIR__.'/data/document.pdf');
12 12
 
13 13
         $this->assertSame('pdf', $type);
14 14
     }
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
     {
21 21
         $obj = new DocumentTypeGuesser();
22 22
         $obj->setGuessers([]);
23
-        $type = $obj->guess(__DIR__ . '/data/document.pdf');
23
+        $type = $obj->guess(__DIR__.'/data/document.pdf');
24 24
 
25 25
         $this->assertSame(null, $type);
26 26
     }
Please login to merge, or discard this patch.