Skip to content

Commit 5f2525d

Browse files
committed
Changes suggested in code review
1 parent 1d5b233 commit 5f2525d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ Please also have a look at our
5454

5555
### Fixed
5656

57-
- Render rules in line and column number order (#1058)
57+
- Render rules in line and column number order (#1059)
5858
- Don't render `rgb` colors with percentage values using hex notation (#803)
5959
- Parse `@font-face` `src` property as comma-delimited list (#790)
6060

tests/Functional/RuleSet/DeclarationBlockTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public function rendersRulesInOrderProvided(): void
3535
$rule3->setValue('#fff');
3636
$declarationBlock->addRule($rule3);
3737

38-
$expectedRendering = 'background-color: transparent;background: #222';
38+
$expectedRendering = 'background-color: transparent;background: #222;background-color: #fff';
3939
self::assertStringContainsString($expectedRendering, $declarationBlock->render(new OutputFormat()));
4040
}
4141
}

0 commit comments

Comments
 (0)