Test Failed
Push — master ( 842e0f...516706 )
by ANDRE
02:52
created
tests/class-test-simple-column.spec.php 2 patches
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@
 block discarded – undo
53 53
  * @since 1.0.8
54 54
  */
55 55
   public function test_method_type() {
56
-    $featured_image_column = new Simple_Featured_Image_Column( $this->plugin_name, $this->version );
57
-    $this->assertTrue( method_exists( $featured_image_column , 'column_data' ) );
56
+	$featured_image_column = new Simple_Featured_Image_Column( $this->plugin_name, $this->version );
57
+	$this->assertTrue( method_exists( $featured_image_column , 'column_data' ) );
58 58
   }
59 59
 }
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -35,14 +35,14 @@  discard block
 block discarded – undo
35 35
 		$this->sfic = new Simple_Featured_Image_Column;
36 36
 	}
37 37
 	
38
-	function create_post( $post = array() ) {
38
+	function create_post($post = array()) {
39 39
 		$defaults = array(
40 40
 			'post_title' => 'My Post',
41 41
 			'post_content' => 'This is my post',
42 42
 			'post_status' => 'publish',
43 43
 			'post_author' => 1,
44 44
 		);
45
-		return wp_insert_post( array_merge( $defaults, $post ) );
45
+		return wp_insert_post(array_merge($defaults, $post));
46 46
 	}
47 47
 	
48 48
 /**
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
  * @since 1.0.8
54 54
  */
55 55
   public function test_method_type() {
56
-    $featured_image_column = new Simple_Featured_Image_Column( $this->plugin_name, $this->version );
57
-    $this->assertTrue( method_exists( $featured_image_column , 'column_data' ) );
56
+    $featured_image_column = new Simple_Featured_Image_Column($this->plugin_name, $this->version);
57
+    $this->assertTrue(method_exists($featured_image_column, 'column_data'));
58 58
   }
59 59
 }
Please login to merge, or discard this patch.