Skip to content

Commit

Permalink
Fix code coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
hagenw committed Jun 12, 2024
1 parent 9ec9993 commit 69dd809
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/test_table.py
Original file line number Diff line number Diff line change
Expand Up @@ -1506,6 +1506,8 @@ def test_save_and_load(tmpdir, storage_format):
db["multi-misc"]["arrays"].set([np.array([0, 1]), np.array([2, 3])])
db["multi-misc"]["lists"] = audformat.Column(scheme_id="object")
db["multi-misc"]["lists"].set([[0, 1], [2, 3]])
db["multi-misc"]["no-scheme"] = audformat.Column()
db["multi-misc"]["no-scheme"].set([0, 1])

for table_id in list(db):
expected_df = db[table_id].get()
Expand Down

0 comments on commit 69dd809

Please sign in to comment.