Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
knabar committed Jul 24, 2024
1 parent 374f20d commit 341639a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion components/tools/OmeroWeb/test/integration/test_table.py
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,11 @@ def test_table_perform_slice(
['columns=0-2', False], # missing rows
['rows=0-4&columns=0-100', False], # columns out of range
['rows=0-1000000&columns=0-4', False], # too many cells
['rows=0-100&columns=0-4', True], # all good
['rows=0-100&columns=0-4', False], # rows out of range
['rows=0-3,-1&columns=0-4', False], # invalid row
['rows=0,2.5&columns=0-4', False], # invalid row
['rows=0,X-Y&columns=0-4', False], # invalid row
['rows=0-3&columns=0-4', True], # all good
])
def test_table_perform_slice_errors(
self, omero_table_file, django_client, table_data,
Expand Down

0 comments on commit 341639a

Please sign in to comment.