Completed
Push — master ( 20b044...92d91e )
by Fulvio
08:14 queued 05:34
created
tests/acceptance/AdminTestCest.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -1,23 +1,23 @@
 block discarded – undo
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 the Plugins page.' );
8
+		$I->wantTo('See if WP PHP Console is listed in the Plugins page.');
9 9
 
10 10
 		$I->loginAsAdmin();
11 11
 		$I->amOnPluginsPage();
12 12
 
13
-		$I->seePluginInstalled( 'wp-php-console' );
13
+		$I->seePluginInstalled('wp-php-console');
14 14
 
15
-		$I->wantTo( 'Deactivate and reactivate WP PHP Console.' );
15
+		$I->wantTo('Deactivate and reactivate WP PHP Console.');
16 16
 
17
-		$I->deactivatePlugin( 'wp-php-console' );
18
-		$I->seePluginDeactivated( 'wp-php-console' );
19
-		$I->activatePlugin( 'wp-php-console' );
20
-		$I->seePluginActivated( 'wp-php-console' );
17
+		$I->deactivatePlugin('wp-php-console');
18
+		$I->seePluginDeactivated('wp-php-console');
19
+		$I->activatePlugin('wp-php-console');
20
+		$I->seePluginActivated('wp-php-console');
21 21
 	}
22 22
 
23 23
 
Please login to merge, or discard this patch.