@@ -1,18 +1,18 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -class AdminTestCest { |
|
3 | +class AdminTestCest { |
|
4 | 4 | |
5 | 5 | |
6 | - public function TestPluginActivationDeactivation( AcceptanceTester $I ) { |
|
6 | + public function TestPluginActivationDeactivation(AcceptanceTester $I) { |
|
7 | 7 | |
8 | - $I->wantTo( 'See if WP PHP Console is listed in Plugins page' ); |
|
8 | + $I->wantTo('See if WP PHP Console is listed in Plugins page'); |
|
9 | 9 | |
10 | 10 | $I->amOnPluginsPage(); |
11 | 11 | |
12 | - $I->seePluginActivated( 'wp-php-console' ); |
|
12 | + $I->seePluginActivated('wp-php-console'); |
|
13 | 13 | |
14 | - $I->deactivatePlugin( 'wp-php-console' ); |
|
15 | - $I->activatePlugin( 'wp-php-console' ); |
|
14 | + $I->deactivatePlugin('wp-php-console'); |
|
15 | + $I->activatePlugin('wp-php-console'); |
|
16 | 16 | } |
17 | 17 | |
18 | 18 |