Skip to content

Commit

Permalink
Update one test case because the database has been changed.
Browse files Browse the repository at this point in the history
  • Loading branch information
guoci authored Nov 14, 2023
1 parent afe2337 commit b29bdd2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/dat/dat_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@ func TestBase_ProcessDB(t *testing.T) {
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
len_records := ParseFile(tt.args.file, make(chan<- []fas.FastaEntry, 1024))
if len_records != 20411 {
t.Errorf("Number of FASTA entries is incorrect, got %d, want %d", len_records, 20411)
if len_records != 20413 {
t.Errorf("Number of FASTA entries is incorrect, got %d, want %d", len_records, 20413)
}
})
}
Expand Down

0 comments on commit b29bdd2

Please sign in to comment.