Skip to content

Commit

Permalink
increase timeout to 500ms
Browse files Browse the repository at this point in the history
  • Loading branch information
psobolewskiPhD committed Aug 4, 2024
1 parent edd6695 commit 105ba44
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions napari/_qt/_tests/test_async_slicing.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ def layer_loaded(ly):

for i in range(viewer.dims.nsteps[0]):
viewer.dims.current_step = (i, 0, 0)
qtbot.waitUntil(partial(layer_loaded, l0), timeout=50)
qtbot.waitUntil(partial(layer_loaded, l1), timeout=50)
qtbot.waitUntil(partial(layer_loaded, l0), timeout=500)
qtbot.waitUntil(partial(layer_loaded, l1), timeout=500)


@pytest.mark.usefixtures('_enable_async')
Expand Down

0 comments on commit 105ba44

Please sign in to comment.