Skip to content

Commit

Permalink
style (tes): line was too long
Browse files Browse the repository at this point in the history
  • Loading branch information
zhuchcn committed Nov 13, 2023
1 parent 9357f87 commit 88a5229
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/unit/test_peptide_pool_splitter.py
Original file line number Diff line number Diff line change
Expand Up @@ -595,9 +595,9 @@ def test_split_database_source_comb_order_case2(self):
)
splitter.split(2, [{'altSplice', 'Noncoding'}], tx2gene, coding_tx)

self.assertEqual({'altSplice-Noncoding-additional'}, set(splitter.databases.keys()))

received = {str(x.seq) for x in splitter.databases['altSplice-Noncoding-additional'].peptides}
key = 'altSplice-Noncoding-additional'
self.assertEqual({key}, set(splitter.databases.keys()))
received = {str(x.seq) for x in splitter.databases[key].peptides}
expected = {x[0] for x in peptides_data}
self.assertEqual(expected, received)

Expand Down

0 comments on commit 88a5229

Please sign in to comment.