A new version of CollectionsTests was added to project The Inbox:
http://source.squeak.org/inbox/CollectionsTests-ct.356.mcz==================== Summary ====================
Name: CollectionsTests-ct.356
Author: ct
Time: 6 May 2021, 7:20:08.135252 pm
UUID: 90971275-bb93-b244-b0a2-bf8e0d682308
Ancestors: CollectionsTests-nice.354
Adjusts test for Collections-ct.944 (empty CSS value).
=============== Diff against CollectionsTests-nice.354 ===============
Item was changed:
----- Method: HtmlReadWriterTest>>test13SpanTag (in category 'tests') -----
test13SpanTag
{
+ '<span style="width: 100px;color:#FFFF00; incorrectly-empty-tag:; font-style: bold; font-size: 10px">Hello, World!!</span>'.
- '<span style="width: 100px;color:#FFFF00; font-style: bold; font-size: 10px">Hello, World!!</span>'.
'Hello, World!!' asText
addAttribute: (TextColor color: Color yellow);
+ addAttribute: TextEmphasis bold} pairsDo: [:expectedHtml :expectedText |
- addAttribute: (TextEmphasis bold).
- } pairsDo: [:expectedHtml :expectedText |
-
self convertHtml: expectedHtml.
self assert: expectedText string equals: text string.
self assert: expectedText runs equals: text runs]!