Skip to content

Commit

Permalink
Replace TODO with link to issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed Jun 12, 2023
1 parent 2878ecb commit 16e3b90
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions cssutils/tests/test_profiles.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,17 +144,17 @@ def _gen_validation_inputs():
yield pytest.param(
('color', 'rgba(0,0,0,0)', None),
(True, True, [CSS3_COLOR]),
marks=pytest.mark.xfail(reason="legacy failure (TODO fix)"),
marks=pytest.mark.xfail(reason="#37"),
)
yield pytest.param(
('color', 'rgba(0,0,0,0)', CSS_LEVEL_2),
(True, False, [CSS3_COLOR]),
marks=pytest.mark.xfail(reason="legacy failure (TODO fix)"),
marks=pytest.mark.xfail(reason="#37"),
)
yield pytest.param(
('color', 'rgba(0,0,0,0)', CSS3_COLOR),
(True, True, [CSS3_COLOR]),
marks=pytest.mark.xfail(reason="legacy failure (TODO fix)"),
marks=pytest.mark.xfail(reason="#37"),
)
yield pytest.param(
('color', '1px', None),
Expand All @@ -163,7 +163,7 @@ def _gen_validation_inputs():
False,
[CSS3_COLOR, CSS_LEVEL_2],
),
marks=pytest.mark.xfail(reason="legacy failure (TODO fix)"),
marks=pytest.mark.xfail(reason="#37"),
)
yield pytest.param(
('color', '1px', CSS_LEVEL_2),
Expand All @@ -172,7 +172,7 @@ def _gen_validation_inputs():
False,
[CSS3_COLOR, CSS_LEVEL_2],
),
marks=pytest.mark.xfail(reason="legacy failure (TODO fix)"),
marks=pytest.mark.xfail(reason="#37"),
)
yield pytest.param(
('color', '1px', CSS3_COLOR),
Expand All @@ -181,7 +181,7 @@ def _gen_validation_inputs():
False,
[CSS3_COLOR, CSS_LEVEL_2],
),
marks=pytest.mark.xfail(reason="legacy failure (TODO fix)"),
marks=pytest.mark.xfail(reason="#37"),
)
yield (
('color', 'aliceblue', None),
Expand Down

0 comments on commit 16e3b90

Please sign in to comment.