Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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_diff(E2ECollector::getE2ENames(), self::IGNORED_E2E_TESTS);
$expected = array_values(array_diff(E2ECollector::getE2ENames(), self::IGNORED_E2E_TESTS));
$actual = GAE2ECollector::getExecutedE2ETests();

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