Skip to content

Commit

Permalink
Merge pull request #300 from chrovis/fix/static-field-calls
Browse files Browse the repository at this point in the history
Remove extra parens around static field references
  • Loading branch information
r6eve authored Feb 15, 2024
2 parents f64271f + 90bbb4d commit ec9c199
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions test/cljam/io/bam_test.clj
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@
\f -17.75
\f 0.0
\f 5.75
\f (Float/MAX_VALUE)
\f (Float/MIN_NORMAL)
\f (Float/MIN_VALUE)
\f (Float/NEGATIVE_INFINITY)
\f (Float/POSITIVE_INFINITY)))
\f Float/MAX_VALUE
\f Float/MIN_NORMAL
\f Float/MIN_VALUE
\f Float/NEGATIVE_INFINITY
\f Float/POSITIVE_INFINITY))

(testing "NULL-terminated text"
(are [?type ?value]
Expand Down

0 comments on commit ec9c199

Please sign in to comment.