Browse Source

Remove double space to satisfy PHPCS

jeffblack360 10 years ago
parent
commit
3fe062c020
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/TestCase/Event/EventManagerTest.php

+ 1 - 1
tests/TestCase/Event/EventManagerTest.php

@@ -182,7 +182,7 @@ class EventManagerTest extends TestCase
         $this->assertEmpty($manager->matchingListeners('^test'));
 
         $expected = ['fake.event', 'real.event', 'test.event', 'event.test'];
-        $result =  $manager->matchingListeners('event');
+        $result = $manager->matchingListeners('event');
         $this->assertNotEmpty($result);
         $this->assertSame($expected, array_keys($result));