Skip to content

Commit

Permalink
Fixed a broken test.
Browse files Browse the repository at this point in the history
This time the tests *were* run on my workstation; the previous commit
showed that the CI pipeline was working correctly.
  • Loading branch information
Richard Liang committed Nov 20, 2024
1 parent 365fed5 commit 916aecd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ruby/test/cfe_gotoh_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -1132,7 +1132,7 @@ class RemoveInsertsTest < CfeGotohTest
std: '-AAACCC-GGGT-TT-',
query: 'TAAACCCAG-GTCTTA',
expected_seq: 'AAACCCG-GTTT',
expected_inserts: [[0, 'T'], [2, 'A'], [3, 'C'], [4, A]]
expected_inserts: [[0, 'T'], [2, 'A'], [3, 'C'], [4, 'A']]
},
{
name: 'multiple_base_insertion_in_middle',
Expand Down Expand Up @@ -1174,7 +1174,7 @@ class RemoveInsertsTest < CfeGotohTest
std: '---AAACC-CGGG---TT-T----',
query: 'CGTAAACGGCG-GACGTTATACGT',
expected_seq: 'AAACGCG-GTTT',
expected_inserts: [[0, 'CGT'], [1, 'C'], [3, 'ACG'], [3, 'A'], [4, 'ACGT']]
expected_inserts: [[0, 'CGT'], [1, 'G'], [3, 'ACG'], [3, 'A'], [4, 'ACGT']]
}
]

Expand Down

0 comments on commit 916aecd

Please sign in to comment.