Skip to content

Commit

Permalink
Remove array_values
Browse files Browse the repository at this point in the history
  • Loading branch information
VincentLanglet committed Sep 1, 2024
1 parent daf1be5 commit d974602
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/AutoReview/GAE2ETest.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class GAE2ETest extends TestCase

public function test_github_actions_executes_all_the_e2e_tests(): void
{
$expected = array_values(array_diff(E2ECollector::getE2ENames(), self::IGNORED_E2E_TESTS));
$expected = array_diff(E2ECollector::getE2ENames(), self::IGNORED_E2E_TESTS);
$actual = GAE2ECollector::getExecutedE2ETests();

self::assertEqualsCanonicalizing($expected, $actual);
Expand Down

0 comments on commit d974602

Please sign in to comment.