Skip to content
This repository was archived by the owner on Jul 6, 2025. It is now read-only.

Commit ff7cd27

Browse files
Fixed unit tests
1 parent 3e4274a commit ff7cd27

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

unit-tests/Tests/Version2/system-status.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ public function test_system_status_schema() {
207207
$response = $this->server->dispatch( $request );
208208
$data = $response->get_data();
209209
$properties = $data['schema']['properties'];
210-
$this->assertEquals( 9, count( $properties ) );
210+
$this->assertEquals( 10, count( $properties ) );
211211
$this->assertArrayHasKey( 'environment', $properties );
212212
$this->assertArrayHasKey( 'database', $properties );
213213
$this->assertArrayHasKey( 'active_plugins', $properties );

unit-tests/Tests/Version3/system-status.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ public function test_system_status_schema() {
210210
$response = $this->server->dispatch( $request );
211211
$data = $response->get_data();
212212
$properties = $data['schema']['properties'];
213-
$this->assertEquals( 9, count( $properties ) );
213+
$this->assertEquals( 10, count( $properties ) );
214214
$this->assertArrayHasKey( 'environment', $properties );
215215
$this->assertArrayHasKey( 'database', $properties );
216216
$this->assertArrayHasKey( 'active_plugins', $properties );

0 commit comments

Comments
 (0)