Skip to content

Commit f041717

Browse files
staabmsebastianbergmann
authored andcommitted
fix type error in test
1 parent 22960a2 commit f041717

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/end-to-end/regression/6105/IssueTest6105.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@ public function test_1(): void
3030
public function test_case_2_check(): void
3131
{
3232
ob_start();
33-
header('X-Test', 'Testing');
33+
header('X-Test: Testing');
3434
print 'asd';
3535
$content = ob_get_clean();
3636

3737
$this->assertSame('asd', $content);
38-
$this->assertSame(['X-Test'], xdebug_get_headers());
38+
$this->assertSame(['X-Test: Testing'], xdebug_get_headers());
3939
}
4040
}

0 commit comments

Comments
 (0)