Skip to content

Commit

Permalink
refactor: Add indexes
Browse files Browse the repository at this point in the history
  • Loading branch information
neznaika0 committed Nov 9, 2024
1 parent 8a1ca7b commit 3422965
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/system/HTTP/RequestTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 3422965

Please sign in to comment.