Skip to content

Commit 6e88a94

Browse files
committed
[BUGFIX] Drop test that passes in the wrong type
`OutputFormat::spaceAfterListArgumentSeparator` is expected to be a string, not an array. This was discovered by adding dedicated, strictly typed property accessors for `OutputFormat`.
1 parent b584760 commit 6e88a94

File tree

1 file changed

+0
-17
lines changed

1 file changed

+0
-17
lines changed

tests/OutputFormatTest.php

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -96,23 +96,6 @@ public function spaceAfterListArgumentSeparator(): void
9696
);
9797
}
9898

99-
/**
100-
* @test
101-
*/
102-
public function spaceAfterListArgumentSeparatorComplex(): void
103-
{
104-
self::assertSame(
105-
'.main, .test {font: italic normal bold 16px/1.2 "Helvetica", Verdana, sans-serif;background: white;}'
106-
. "\n@media screen {.main {background-size: 100% 100%;font-size: 1.3em;background-color: #fff;}}",
107-
$this->document->render(OutputFormat::create()->setSpaceAfterListArgumentSeparator([
108-
'default' => ' ',
109-
',' => "\t",
110-
'/' => '',
111-
' ' => '',
112-
]))
113-
);
114-
}
115-
11699
/**
117100
* @test
118101
*/

0 commit comments

Comments
 (0)