Skip to content

Commit

Permalink
test: fix schema properties count
Browse files Browse the repository at this point in the history
  • Loading branch information
johnhooks committed Apr 21, 2023
1 parent e6bc3fa commit cdbfa49
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public function test_get_item_schema() {
$response = rest_get_server()->dispatch( $request );
$data = $response->get_data();
$properties = $data['schema']['properties'];
$this->assertCount( 14, $properties );
$this->assertCount( 13, $properties );
$this->assertArrayHasKey( 'channel_name', $properties );
$this->assertArrayHasKey( 'channel_title', $properties );
$this->assertArrayHasKey( 'context', $properties );
Expand Down

0 comments on commit cdbfa49

Please sign in to comment.