Skip to content

Commit e78863f

Browse files
committed
Remove unstable mark
1 parent ee72fbd commit e78863f

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

tests/address_bar_and_search/test_tile_menu_options.py

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,19 +15,23 @@ def test_case():
1515

1616
ALLOWED_RGB_BEFORE_VALUES_CARD = set(["rgba(0, 0, 0, 0)"])
1717
ALLOWED_RGB_AFTER_VALUES_CARD = set(
18-
["color(srgb 0.878824 0.878824 0.885882)", "color(srgb 0.334902 0.331765 0.36)", "color(srgb 0.0823529 0.0784314 0.101961 / 0.14)"]
18+
[
19+
"color(srgb 0.878824 0.878824 0.885882)",
20+
"color(srgb 0.334902 0.331765 0.36)",
21+
"color(srgb 0.0823529 0.0784314 0.101961 / 0.14)",
22+
]
1923
)
2024
ALLOWED_RGB_VALUES_BEFORE_THREE_DOTS = set(
2125
[
2226
"color(srgb 0.356863 0.356863 0.4 / 0.07)",
2327
"color(srgb 0.984314 0.984314 0.996078 / 0.07)",
24-
"rgba(0, 0, 0, 0)"
28+
"rgba(0, 0, 0, 0)",
2529
]
2630
)
2731
ALLOWED_RGB_AFTER_VALUES_THREE_DOTS = set(
2832
[
2933
"color(srgb 0.356863 0.356863 0.4 / 0.14)",
30-
"color(srgb 0.984314 0.984314 0.996078 / 0.14)"
34+
"color(srgb 0.984314 0.984314 0.996078 / 0.14)",
3135
]
3236
)
3337

@@ -48,7 +52,6 @@ def test_case():
4852
card_indices = [(4, False), (0, True)]
4953

5054

51-
@pytest.mark.unstable(reason="Sponsorship status sometimes does not appear")
5255
def test_default_tile_hover_states(driver: Firefox):
5356
"""
5457
C1533798.1: Ensure that hover states work correctly
@@ -85,7 +88,6 @@ def test_default_tile_hover_states(driver: Firefox):
8588
)
8689

8790

88-
@pytest.mark.unstable(reason="Sponsorship status sometimes does not appear")
8991
@pytest.mark.parametrize("index, sponsored", card_indices)
9092
def test_tile_context_menu_options(driver: Firefox, index: int, sponsored: bool):
9193
"""

0 commit comments

Comments
 (0)