From 342296523e15eb989fcc08b414e0fca01f0de156 Mon Sep 17 00:00:00 2001 From: neznaika0 Date: Mon, 4 Nov 2024 10:38:09 +0300 Subject: [PATCH] refactor: Add indexes --- tests/system/HTTP/RequestTest.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/system/HTTP/RequestTest.php b/tests/system/HTTP/RequestTest.php index 2205f29dfe19..6659c6966861 100644 --- a/tests/system/HTTP/RequestTest.php +++ b/tests/system/HTTP/RequestTest.php @@ -199,9 +199,9 @@ public function testFetchGlobalReturnsArrayValues(): void public function testFetchGlobalReturnsWithListValues(): void { $post = [ - ['foo' => 0], - ['bar' => 1], - ['baz' => 2], + 0 => ['foo' => 0], + 1 => ['bar' => 1], + 2 => ['baz' => 2], ]; $this->request->setGlobal('post', $post);