Passed
Push — master ( f8f169...4e757e )
by Luca
02:08
created
tests/TestCase.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -59,6 +59,6 @@
 block discarded – undo
59 59
      */
60 60
     protected function getEnvironmentSetUp($app)
61 61
     {
62
-        $app['config']->set('view.paths', [__DIR__.'/stubs/views']);
62
+        $app[ 'config' ]->set('view.paths', [ __DIR__.'/stubs/views' ]);
63 63
     }
64 64
 }
Please login to merge, or discard this patch.
tests/AdsenseTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
 {
44 44
     public function testAdsense()
45 45
     {
46
-        $return = $this->app->view->make('adsense::javascript')->render();
46
+        $return=$this->app->view->make('adsense::javascript')->render();
47 47
         $this->assertSame("<script async src=\"//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js\"></script>\n<script>(adsbygoogle = window.adsbygoogle || []).push({});</script>\n", $return);
48 48
     }
49 49
 }
Please login to merge, or discard this patch.