Skip to content

Commit

Permalink
Fix fixint test in MessagePackTest. (#785)
Browse files Browse the repository at this point in the history
  • Loading branch information
fangzheng authored Jan 9, 2024
1 parent 938a437 commit 41168e9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ class MessagePackTest extends AirSpec with PropertyCheck with Benchmark {

test("detect fixint values") {

for (i <- 0 until 0x79) {
for (i <- 0 until 0x7f) {
Code.isPosFixInt(i.toByte) shouldBe true
}

Expand Down

0 comments on commit 41168e9

Please sign in to comment.