Skip to content

Commit cebab44

Browse files
committed
fix(test): lowercase names
Signed-off-by: Josh Loecker <joshloecker@icloud.com>
1 parent 3135061 commit cebab44

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/unit/test_data_types.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
def test_source_types():
55
"""Validate that source types always go in the order of 'trna', 'mrna', 'scrna', 'protemics'."""
6-
expected_order = ["TRNA", "MRNA", "SCRNA", "PROTEOMICS"]
6+
expected_order = ["trna", "mrna", "scrna", "proteomics"]
77
for expected, source in zip(expected_order, SourceTypes, strict=True):
88
expected: str
99
source: SourceTypes

0 commit comments

Comments
 (0)