Skip to content
This repository was archived by the owner on Sep 17, 2025. It is now read-only.

Commit e4fbd38

Browse files
author
Yves Richard
committed
Fix test/normalizestyle.js
Forgot one change when copy pasted.
1 parent cad4427 commit e4fbd38

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/normalizestyle.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ test('normalizeStyle fill', function(t) {
5656
checkFill({ 'fill': 'f00' }, { 'fill': '#f00' }, 'fill: fill f00 => #f00');
5757
checkFill({ 'fill': 'rgb(,,,)' }, {}, 'point: fill rgb(,,,) => undefined');
5858
checkFill({ 'fill': 'rgb(0,0,0)' }, { 'fill': 'rgb(0,0,0)' }, 'point: fill rgb(0,0,0) => rgb(0,0,0)');
59-
checkFill({ 'marker-color': 'rgb(255,255,255)' }, { 'marker-color': 'rgb(255,255,255)' }, 'point: marker-color rgb(255,255,255) => rgb(255,255,255)');
59+
checkFill({ 'fill': 'rgb(255,255,255)' }, { 'fill': 'rgb(255,255,255)' }, 'point: fill rgb(255,255,255) => rgb(255,255,255)');
6060
checkFill({ 'fill-opacity': 'red' }, {}, 'fill: fill-opacity red => undefined');
6161
checkFill({ 'fill-opacity': 0.5 }, { 'fill-opacity': 0.5 }, 'fill: fill-opacity 0.5 => 0.5');
6262
checkFill({ 'fill-opacity': '0.5' }, { 'fill-opacity': 0.5 }, 'fill: fill-opacity "0.5" => 0.5');

0 commit comments

Comments
 (0)