From 9357d0b6a28a6e011cd85d8713202332d1c1ad97 Mon Sep 17 00:00:00 2001 From: Alex Pott Date: Wed, 15 Jul 2020 11:39:34 +0100 Subject: [PATCH] Issue #2942569 hotfix: Sorting nested properties of config entity queries does not work (cherry picked from commit 1c4696777941d3b7538e1fe3d319824d59edeb89) --- .../Drupal/KernelTests/Core/Entity/ConfigEntityQueryTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/tests/Drupal/KernelTests/Core/Entity/ConfigEntityQueryTest.php b/core/tests/Drupal/KernelTests/Core/Entity/ConfigEntityQueryTest.php index 4d859af040..7e2af7ff72 100644 --- a/core/tests/Drupal/KernelTests/Core/Entity/ConfigEntityQueryTest.php +++ b/core/tests/Drupal/KernelTests/Core/Entity/ConfigEntityQueryTest.php @@ -644,7 +644,7 @@ public function testDotted() { $this->queryResults = $this->entityStorage->getQuery() ->notExists('does.not.exist') ->execute(); - $this->assertResults($all); + $this->assertResults(['1', '2', '3', '4', '5', '6', '7']); } /** -- GitLab