Skip to content
This repository has been archived by the owner on Jul 20, 2018. It is now read-only.

Commit

Permalink
Code formatting fix-up for spaces vs tabs
Browse files Browse the repository at this point in the history
Use spaces instead of tabs to be consistent with the rest of the code
  • Loading branch information
devonliu committed May 22, 2015
1 parent 64a95ca commit d1e7a98
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/checks/test-VIPRestrictedCommandsCheck.php
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,8 @@ public function testDebugging() {
array( 'slug' => 'wp_debug_backtrace_summary', 'level' => 'Blocker', 'description' => "Unfiltered filesystem information output", 'file' => 'VIPRestrictedCommandsCheck7.inc', 'lines' => ++$line ),
array( 'slug' => 'debug_backtrace', 'level' => 'Blocker', 'description' => "Unfiltered filesystem information output", 'file' => 'VIPRestrictedCommandsCheck7.inc', 'lines' => ++$line ),
array( 'slug' => 'debug_print_backtrace', 'level' => 'Blocker', 'description' => "Unfiltered filesystem information output", 'file' => 'VIPRestrictedCommandsCheck7.inc', 'lines' => ++$line ),
array( 'slug' => 'trigger_error', 'level' => 'Blocker', 'description' => "Triggered error message not accessible", 'file' => 'VIPRestrictedCommandsCheck7.inc', 'lines' => ++$line ),
array( 'slug' => 'set_error_handler', 'level' => 'Blocker', 'description' => "User-defined error handler not supported", 'file' => 'VIPRestrictedCommandsCheck7.inc', 'lines' => ++$line ),
array( 'slug' => 'trigger_error', 'level' => 'Blocker', 'description' => "Triggered error message not accessible", 'file' => 'VIPRestrictedCommandsCheck7.inc', 'lines' => ++$line ),
array( 'slug' => 'set_error_handler', 'level' => 'Blocker', 'description' => "User-defined error handler not supported", 'file' => 'VIPRestrictedCommandsCheck7.inc', 'lines' => ++$line ),
);
$actual_errors = $this->checkFile( 'VIPRestrictedCommandsCheck7.inc' );
$this->assertEqualErrors( $expected_errors, $actual_errors );
Expand Down

0 comments on commit d1e7a98

Please sign in to comment.