From 634f918da38c2165b8159c1b535f4f662f027e96 Mon Sep 17 00:00:00 2001 From: brandonkelly Date: Fri, 7 Jun 2024 09:22:49 -0700 Subject: [PATCH] Add test case --- tests/framework/db/BaseActiveRecordTest.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/framework/db/BaseActiveRecordTest.php b/tests/framework/db/BaseActiveRecordTest.php index 1ef9013aa77..a06fc68d992 100644 --- a/tests/framework/db/BaseActiveRecordTest.php +++ b/tests/framework/db/BaseActiveRecordTest.php @@ -28,6 +28,10 @@ public function provideArrayValueWithChange() ['pineapple' => 2, 'apple' => 5, 'banana' => 1], ['pineapple' => 2, 'apple' => 3, 'banana' => 1], ], + 'multi-dimensional array' => [ + ['foo' => ['c', 'b', 'a']], + ['foo' => ['b', 'c', 'a']], + ], 'filling an empty array' => [ [],