Skip to content

Commit

Permalink
Fix unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
jrobinso committed Oct 3, 2024
1 parent b66e45d commit 5e1af18
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion test/data/vcf/noheader.vcf
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,3 @@
chr6 63498622 <a href='https://www.ncbi.nlm.nih.gov/snp/rs1779765' target='_blank'>rs1779765</a> T A . . .
chr6 63498633 <a href='https://www.ncbi.nlm.nih.gov/snp/rs1779766' target='_blank'>rs1779766</a> G A . . .
chr6 63498639 <a href='https://www.ncbi.nlm.nih.gov/snp/rs1779767' target='_blank'>rs1779767</a> G A . . .
chr6 63498644 . G GA,<NON_REF> . . .
2 changes: 1 addition & 1 deletion test/testVariant.js
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ suite("testVariant", function () {

const variants = await track.getFeatures("chr6", 0, Number.MAX_SAFE_INTEGER)

assert.equal(variants.length, 4)
assert.equal(variants.length, 3)

for (let v of variants) {
assert.equal(v.type, "SNP")
Expand Down

0 comments on commit 5e1af18

Please sign in to comment.