Skip to content

Commit

Permalink
Update tests/unit/common/test_table.py
Browse files Browse the repository at this point in the history
Co-authored-by: Ryan Ly <rly@lbl.gov>
  • Loading branch information
mavaylon1 and rly authored Mar 19, 2024
1 parent 6281c23 commit c16c542
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unit/common/test_table.py
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ def test_add_row_validate_bad_data_all_col(self):
with self.assertRaises(ValueError):
species.add_row(Species_1='bad data', Species_2='bad data')

def test_add_ref_compound_data_append(self):
def test_compound_data_append(self):
c_data = np.array([('Homo sapiens', 24)], dtype=[('species', 'U50'), ('age', 'i4')])
c_data2 = np.array([('Mus musculus', 24)], dtype=[('species', 'U50'), ('age', 'i4')])
compound_vector_data = VectorData(
Expand Down

0 comments on commit c16c542

Please sign in to comment.