Skip to content

Commit e8c8a04

Browse files
committed
Expect failure for test cleanup
1 parent 5a5a12e commit e8c8a04

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

testbed/tests/widgets/test_passwordinput.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,9 @@ def verify_font_sizes():
4545
return False, True
4646

4747

48-
test_cleanup = build_cleanup_test(toga.PasswordInput, xfail_platforms=("android",))
48+
test_cleanup = build_cleanup_test(
49+
toga.PasswordInput, xfail_platforms=("android", "linux")
50+
)
4951

5052

5153
async def test_value_hidden(widget, probe):

testbed/tests/widgets/test_textinput.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ async def placeholder(request, widget):
5252
widget.placeholder = request.param
5353

5454

55-
test_cleanup = build_cleanup_test(toga.TextInput, xfail_platforms=("android",))
55+
test_cleanup = build_cleanup_test(toga.TextInput, xfail_platforms=("android", "linux"))
5656

5757

5858
async def test_value_not_hidden(widget, probe):

0 commit comments

Comments
 (0)