Skip to content

Commit

Permalink
Merge pull request #266 from chrovis/fix/bam_test_aux-data-codec-test
Browse files Browse the repository at this point in the history
Fix cljam.io.bam-test to work properly
  • Loading branch information
alumi committed Nov 28, 2022
2 parents 843e30b + 894f4da commit ab548fb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-18.04
strategy:
matrix:
java: [ '8', '11', '16', '17-ea']
java: [ '8', '11', '17', '19']
name: Java ${{ matrix.java }}
steps:
- uses: actions/checkout@v3
Expand Down
6 changes: 3 additions & 3 deletions test/cljam/io/bam_test.clj
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
(as-> (#'encoder/encode-tag-value
(ByteBuffer/allocate 100) ?type ?value) ^ByteBuffer bb
(.position bb 0)
(decoder/parse-tag-single ?type bb) ?type ?value))
(decoder/parse-tag-single ?type bb)))
\A \@
\A \A
\A \z
Expand Down Expand Up @@ -55,7 +55,7 @@
(as-> (#'encoder/encode-tag-value
(ByteBuffer/allocate 100) ?type ?value) ^ByteBuffer bb
(.position bb 0)
(decoder/parse-tag-single ?type bb) ?type ?value))
(decoder/parse-tag-single ?type bb)))
\Z "aaaBBB0011223344@@@+++"
\Z (str "!\"#$%&'()*+,-./0123456789:;<=>?@"
"ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~")))
Expand All @@ -82,4 +82,4 @@
"i,-2147483648,0,2147483647"
"I,0,4294967295"
"f,-17.25,0.0,5.75"
"f,3.4028235E38,1.17549435E-38,1.4E-45,-Infinity,Infinity")))
(str "f,3.4028235E38,1.4E-45,-Infinity,Infinity," Float/MIN_NORMAL))))

0 comments on commit ab548fb

Please sign in to comment.