Skip to content

[CLEANUP] Final removal of deprecated functions #557

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
[CLEANUP] Fix tests after removing Rule::getValues
Signed-off-by: Daniel Ziegenberg <daniel@ziegenberg.at>
  • Loading branch information
ziegenberg committed Jun 18, 2024
commit e9603f70c0eb8ca605c1dfc276aef4d452561a29
3 changes: 1 addition & 2 deletions tests/ParserTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -182,8 +182,7 @@ public function unicodeParsing(): void
continue;
}
$aContentRules = $oRuleSet->getRules('content');
$aContents = $aContentRules[0]->getValues();
$sString = $aContents[0][0]->__toString();
$sString = $aContentRules[0]->getValue()->__toString();
if ($sSelector == '.test-1') {
self::assertSame('" "', $sString);
}
Expand Down