Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Automated tests with ES 8 #3854

Merged
merged 12 commits into from
Mar 7, 2024
Prev Previous commit
Next Next commit
Just check if memory was set
  • Loading branch information
felipeelia committed Mar 4, 2024
commit c64606b625acec183805c4920b307599a8791a9e
4 changes: 3 additions & 1 deletion tests/php/TestStats.php
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,11 @@ public function testTotals() {

$this->assertEquals( 1, $totals['docs'] );
$this->assertTrue( ! empty( $totals['size'] ) );
$this->assertTrue( ! empty( $totals['memory'] ) );
$this->assertTrue( isset( $totals['memory'] ) );

$this->assertEmpty( Stats::factory()->get_failed_queries() );

$this->markTestIncomplete( 'Memory numbers are always 0 with Elasticsearch 8.x' );
}

/**
Expand Down
Loading