Skip to content

Commit ca42539

Browse files
committed
fix, as actual output can have extra outputs as well
1 parent ad21a6f commit ca42539

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/SDKTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -413,8 +413,8 @@ public function testHTTPSuccess()
413413

414414
$this->assertGreaterThanOrEqual(count($options['expectedOutput']), count($output));
415415

416-
foreach ($output as $i => $row) {
417-
$this->assertEquals($options['expectedOutput'][$i], $row);
416+
foreach ($options['expectedOutput'] as $i => $row) {
417+
$this->assertEquals($output[$i], $row);
418418
}
419419
}
420420
}

0 commit comments

Comments
 (0)