Test Setup Failed
Pull Request — master (#42)
by Matthew
08:26
created
tests/api/Domain/Validators/PickValidatorTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
 
11 11
 class PickValidatorTest extends TestCase {
12 12
   function setUp() {
13
-    $this->app = require dirname(__FILE__).'/../../../../api/config/_app.php';
13
+    $this->app = require dirname(__FILE__) . '/../../../../api/config/_app.php';
14 14
     $draftDataRepository = new DraftDataRepository($this->app);
15 15
     $this->app['phpdraft.DraftDataRepository'] = $draftDataRepository;
16 16
     $this->sut = new PickValidator($this->app);
Please login to merge, or discard this patch.
tests/api/Domain/Validators/ProPlayerValidatorTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
7 7
 
8 8
 class ProPlayerValidatorTest extends TestCase {
9 9
   function setUp() {
10
-    $this->app = require dirname(__FILE__).'/../../../../api/config/_app.php';
10
+    $this->app = require dirname(__FILE__) . '/../../../../api/config/_app.php';
11 11
     $draftDataRepository = new DraftDataRepository($this->app);
12 12
     $this->sut = new ProPlayerValidator($this->app);
13 13
     $this->app['phpdraft.DraftDataRepository'] = $draftDataRepository;
Please login to merge, or discard this patch.
tests/api/Domain/Validators/TradeValidatorTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
 
12 12
 class TradeValidatorTest extends TestCase {
13 13
   function setUp() {
14
-    $this->app = require dirname(__FILE__).'/../../../../api/config/_app.php';
14
+    $this->app = require dirname(__FILE__) . '/../../../../api/config/_app.php';
15 15
     $this->draft = new Draft();
16 16
     $this->trade = new Trade();
17 17
     $this->trade->manager1 = new Manager();
Please login to merge, or discard this patch.