Skip to content

Commit 1feda15

Browse files
authored
Merge pull request #1 from Akilez/corrected_header_expectations
Fixed expectations vs actual
2 parents e659526 + 7914d24 commit 1feda15

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Concerns/MakesHttpRequests.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -479,7 +479,7 @@ protected function seeHeader($headerName, $value = null)
479479

480480
if (! is_null($value)) {
481481
$this->assertEquals(
482-
$headers->get($headerName), $value,
482+
$value, $headers->get($headerName),
483483
"Header [{$headerName}] was found, but value [{$headers->get($headerName)}] does not match [{$value}]."
484484
);
485485
}

0 commit comments

Comments
 (0)