Passed
Push — master ( 2a3d19...5e9e4e )
by Caen
05:36 queued 13s
created
packages/publications/tests/Feature/ValidatePublicationsCommandTest.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -75,10 +75,10 @@  discard block
 block discarded – undo
75 75
 ');
76 76
 
77 77
         $this->artisan('validate:publications', ['--verbose' => true])
78
-             ->expectsOutputToContain('Validated 1 publication types, 1 publications, 1 fields')
79
-             ->expectsOutput('Found 0 Warnings')
80
-             ->expectsOutput('Found 0 Errors')
81
-             ->assertExitCode(0);
78
+                ->expectsOutputToContain('Validated 1 publication types, 1 publications, 1 fields')
79
+                ->expectsOutput('Found 0 Warnings')
80
+                ->expectsOutput('Found 0 Errors')
81
+                ->assertExitCode(0);
82 82
     }
83 83
 
84 84
     public function testWithInvalidPublication()
@@ -92,10 +92,10 @@  discard block
 block discarded – undo
92 92
 ');
93 93
 
94 94
         $this->artisan('validate:publications')
95
-             ->expectsOutputToContain('Validated 1 publication types, 1 publications, 1 fields')
96
-             ->expectsOutput('Found 0 Warnings')
97
-             ->expectsOutput('Found 1 Errors')
98
-             ->assertExitCode(1);
95
+                ->expectsOutputToContain('Validated 1 publication types, 1 publications, 1 fields')
96
+                ->expectsOutput('Found 0 Warnings')
97
+                ->expectsOutput('Found 1 Errors')
98
+                ->assertExitCode(1);
99 99
     }
100 100
 
101 101
     public function testWithWarnedPublication()
Please login to merge, or discard this patch.