File tree Expand file tree Collapse file tree 1 file changed +3
-9
lines changed
sdk/python/packages/flet/integration_tests/examples/material Expand file tree Collapse file tree 1 file changed +3
-9
lines changed Original file line number Diff line number Diff line change @@ -74,25 +74,19 @@ async def test_handling_clicks(flet_app_function: ftt.FletTestApp):
7474 flet_app_function .page .update ()
7575 ob = await flet_app_function .tester .find_by_text_containing ("event" )
7676 await flet_app_function .tester .tap (ob )
77- await flet_app_function .tester .pump_and_settle (
78- duration = ft .Duration (milliseconds = 500 )
79- )
77+ await flet_app_function .tester .pump_and_settle ()
8078 flet_app_function .assert_screenshot (
8179 "handling_clicks1" ,
8280 await flet_app_function .page .take_screenshot (),
8381 )
8482 await flet_app_function .tester .tap (ob )
85- await flet_app_function .tester .pump_and_settle (
86- duration = ft .Duration (milliseconds = 500 )
87- )
83+ await flet_app_function .tester .pump_and_settle ()
8884 flet_app_function .assert_screenshot (
8985 "handling_clicks2" ,
9086 await flet_app_function .page .take_screenshot (),
9187 )
9288 await flet_app_function .tester .tap (ob )
93- await flet_app_function .tester .pump_and_settle (
94- duration = ft .Duration (milliseconds = 500 )
95- )
89+ await flet_app_function .tester .pump_and_settle ()
9690 flet_app_function .assert_screenshot (
9791 "handling_clicks3" ,
9892 await flet_app_function .page .take_screenshot (),
You can’t perform that action at this time.
0 commit comments