Skip to content

Commit a09e0fb

Browse files
committed
Fix Http StructuredFieldTestCase file
1 parent c735f7f commit a09e0fb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/StructuredFieldTestCase.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ public function it_can_pass_http_wg_tests(Record $test): void
2727
$this->expectException(SyntaxError::class);
2828
}
2929

30-
$structuredField = $test->type->parse(implode(',', $test->raw));
30+
$structuredField = $test->type->parse(implode(', ', $test->raw));
3131

3232
if (!$test->mustFail) {
3333
self::assertSame(
34-
$test->expected?->toHttpValue() ?? implode(',', $test->canonical),
34+
$test->expected?->toHttpValue() ?? implode(', ', $test->canonical),
3535
$structuredField->toHttpValue()
3636
);
3737
}

0 commit comments

Comments
 (0)