@@ -159,9 +159,9 @@ Checks if specified data is seen as artisan table output:
159159
160160```php
161161$this->seeArtisanTableOutput([
162- [' Date ' => ' 2016-12-13 13:13:13 ' , ' System' => ' Alpha ' , ' Status' => ' Enabled' ],
163- [' Date ' => ' 2016-12-14 14:14:14 ' , ' System' => ' Beta ' , ' Status' => ' Enabled' ],
164- [' Date ' => ' 2016-12-15 15:15:15 ' , ' System ' => ' Gamma ' , ' Status' => ' Disabled ' ],
162+ [' System' => ' Node-1 ' , ' Status' => ' Enabled' ],
163+ [' System' => ' Node-2 ' , ' Status' => ' Enabled' ],
164+ [' System ' => ' Node-3 ' , ' Status' => ' Enabled ' ],
165165]);
166166```
167167
@@ -171,9 +171,9 @@ Checks if specified data is not seen as artisan table output:
171171
172172```php
173173$this->dontSeeArtisanTableOutput([
174- [' Date ' => ' 2016-12-13 13:13:13 ' , ' System ' => ' Alpha ' , ' Status' => ' Enabled ' ],
175- [' Date ' => ' 2016-12-14 14:14:14 ' , ' System ' => ' Beta ' , ' Status' => ' Enabled ' ],
176- [' Date ' => ' 2016-12-15 15:15:15 ' , ' System ' => ' Gamma ' , ' Status' => ' Enabled ' ],
174+ [' System ' => ' Node-1 ' , ' Status' => ' Disabled ' ],
175+ [' System ' => ' Node-2 ' , ' Status' => ' Disabled ' ],
176+ [' System ' => ' Node-3 ' , ' Status' => ' Disabled ' ],
177177]);
178178```
179179
0 commit comments