@@ -15,19 +15,23 @@ def test_case():
15
15
16
16
ALLOWED_RGB_BEFORE_VALUES_CARD = set (["rgba(0, 0, 0, 0)" ])
17
17
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
+ ]
19
23
)
20
24
ALLOWED_RGB_VALUES_BEFORE_THREE_DOTS = set (
21
25
[
22
26
"color(srgb 0.356863 0.356863 0.4 / 0.07)" ,
23
27
"color(srgb 0.984314 0.984314 0.996078 / 0.07)" ,
24
- "rgba(0, 0, 0, 0)"
28
+ "rgba(0, 0, 0, 0)" ,
25
29
]
26
30
)
27
31
ALLOWED_RGB_AFTER_VALUES_THREE_DOTS = set (
28
32
[
29
33
"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)" ,
31
35
]
32
36
)
33
37
@@ -48,7 +52,6 @@ def test_case():
48
52
card_indices = [(4 , False ), (0 , True )]
49
53
50
54
51
- @pytest .mark .unstable (reason = "Sponsorship status sometimes does not appear" )
52
55
def test_default_tile_hover_states (driver : Firefox ):
53
56
"""
54
57
C1533798.1: Ensure that hover states work correctly
@@ -85,7 +88,6 @@ def test_default_tile_hover_states(driver: Firefox):
85
88
)
86
89
87
90
88
- @pytest .mark .unstable (reason = "Sponsorship status sometimes does not appear" )
89
91
@pytest .mark .parametrize ("index, sponsored" , card_indices )
90
92
def test_tile_context_menu_options (driver : Firefox , index : int , sponsored : bool ):
91
93
"""
0 commit comments