Skip to content

Commit

Permalink
Merge eebbfe7 into 9a200e0
Browse files Browse the repository at this point in the history
  • Loading branch information
sinchana-kumbale committed Feb 27, 2024
2 parents 9a200e0 + eebbfe7 commit d735030
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tests/test_tables.py
Original file line number Diff line number Diff line change
Expand Up @@ -1158,6 +1158,11 @@ def test_remove_single(table):
z | 1 | 10
""")

def test_remove_none(table):
num_rows_before = table.num_rows
assert table.remove([]) is None
assert table.num_rows == num_rows_before

def test_remove_zeroth_row(table):
table.remove(0)
assert_equal(table, """
Expand Down

0 comments on commit d735030

Please sign in to comment.