diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 161b09fa..edb007c7 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -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 diff --git a/test/cljam/io/bam_test.clj b/test/cljam/io/bam_test.clj index ccbe174b..4cf0b2a2 100644 --- a/test/cljam/io/bam_test.clj +++ b/test/cljam/io/bam_test.clj @@ -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 @@ -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{|}~"))) @@ -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))))