Skip to content

Commit

Permalink
Update mathcat_test.php
Browse files Browse the repository at this point in the history
  • Loading branch information
ralferlebach authored Oct 19, 2024
1 parent 314fe3e commit f67cb6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/mathcat_test.php
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ public static function conversion_of_array_to_vector_provider(): array {
],

'modified and reordered' => [
'given' => [0, 'first' => 2, 'second' => [7, 9, 8], 'third' => 5],
'given' => [0, 'first' => 2, 'second' => [0 => 7, 2 => 8, 1 => 9], 'third' => 5],
'expected' => [0 => 0.0, 'first' => 2.0, 'second' => [0 => 7.0, 1 => 9.0, 2 => 8.0], 'third' => 5.0],
'structure' => [0 => 0, 'first' => 1, 'second' => [0 => 2, 1 => 3, 2 => 4], 'third' => 5],
],
Expand Down

0 comments on commit f67cb6a

Please sign in to comment.