Skip to content
Snippets Groups Projects
Verified Commit bdc1f78b authored by Lee Rowlands's avatar Lee Rowlands
Browse files

Issue #3410450 by catch: Fix random performance test failures

parent b3710f94
Branches 11.x 3411111-test-convo2
No related tags found
No related merge requests found
...@@ -131,7 +131,7 @@ public function testLogin(): void { ...@@ -131,7 +131,7 @@ public function testLogin(): void {
// random test failures, assert greater than equal the highest and lowest // random test failures, assert greater than equal the highest and lowest
// number of queries observed during test runs. // number of queries observed during test runs.
// See https://www.drupal.org/project/drupal/issues/3402610 // See https://www.drupal.org/project/drupal/issues/3402610
$this->assertLessThanOrEqual(41, $performance_data->getQueryCount()); $this->assertLessThanOrEqual(42, $performance_data->getQueryCount());
$this->assertGreaterThanOrEqual(38, $performance_data->getQueryCount()); $this->assertGreaterThanOrEqual(38, $performance_data->getQueryCount());
$this->assertSame(28, $performance_data->getCacheGetCount()); $this->assertSame(28, $performance_data->getCacheGetCount());
$this->assertLessThanOrEqual(2, $performance_data->getCacheSetCount()); $this->assertLessThanOrEqual(2, $performance_data->getCacheSetCount());
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment