Skip to content
Snippets Groups Projects
Commit 3a86f139 authored by Gábor Hojtsy's avatar Gábor Hojtsy
Browse files

Issue #3118454 by catch, andypost, xjm, Gábor Hojtsy, mradcliffe, mondrake:...

Issue #3118454 by catch, andypost, xjm, Gábor Hojtsy, mradcliffe, mondrake: Drupal\KernelTests\Core\Database\SelectTest fails on postgres 10

(cherry picked from commit dfd8213c)
parent 65740f76
No related branches found
No related tags found
No related merge requests found
......@@ -318,9 +318,8 @@ public function testUnion() {
// Ensure we only get 2 records.
$this->assertEqual(count($names), 2, 'UNION correctly discarded duplicates.');
$this->assertEqual($names[0], 'George', 'First query returned correct name.');
$this->assertEqual($names[1], 'Ringo', 'Second query returned correct name.');
sort($names);
$this->assertEquals(['George', 'Ringo'], $names);
}
/**
......
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