Test Failed
Pull Request — master (#10)
by Anatoly
02:22
created
src/Bundle/Example/Tests/Service/EntryManagerTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
         $entryManager = $container->get('entryManager');
34 34
         $this->assertSame(0, $entryManager->countAll());
35 35
 
36
-        $entryManager->create(['name' => 'foo', 'slug' => 'foo']);
36
+        $entryManager->create([ 'name' => 'foo', 'slug' => 'foo' ]);
37 37
         $this->assertSame(1, $entryManager->countAll());
38 38
     }
39 39
 
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
         $this->createDatabaseSchema($entityManager);
52 52
 
53 53
         $entryManager = $container->get('entryManager');
54
-        $this->assertSame([], $entryManager->getList(null, null));
54
+        $this->assertSame([ ], $entryManager->getList(null, null));
55 55
 
56 56
         // to be continued...
57 57
     }
Please login to merge, or discard this patch.