Skip to content

Commit 9c931fc

Browse files
committed
chore(formatter): fix invalid test case
Signed-off-by: azjezz <[email protected]>
1 parent 6d3cb7f commit 9c931fc

File tree

1 file changed

+4
-3
lines changed
  • crates/formatter/tests/cases/psl_regressions

1 file changed

+4
-3
lines changed

Diff for: crates/formatter/tests/cases/psl_regressions/after.php

+4-3
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,15 @@ public function testTyped(): void
1616
{
1717
/** @var MapInterface $actual */
1818
$actual = Json\typed(
19-
'{
19+
'{
2020
"name": "azjezz/psl",
2121
"type": "library",
2222
"description": "PHP Standard Library.",
2323
"keywords": ["php", "std", "stdlib", "utility", "psl"],
2424
"license": "MIT"
25-
}',
26-
Type\map(Type\string(), Type\union(Type\string(), Type\vector(Type\string()))));
25+
}',
26+
Type\map(Type\string(), Type\union(Type\string(), Type\vector(Type\string()))),
27+
);
2728
}
2829

2930
public function testTypedThrowsWhenUnableToCoerce(): void

0 commit comments

Comments
 (0)