Skip to content

Commit

Permalink
FIX syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
ilmirons committed Feb 10, 2025
1 parent 7b60483 commit 6eb482e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ast/shared/src/test/scala/jawn/AstTest.scala
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ class AstTest extends Properties("AstTest") with AstTestPlatform {
property(".asBigInt") = forAllNoShrink { (expForm: (String, Double)) =>
Prop(
JParser.parseUnsafe(expForm._1).getBigInt == Try(JParser.parseUnsafe(expForm._1).asBigInt).toOption &&
JParser.parseUnsafe(expForm._1).asBigInt == BigDecimal(expForm._2).toBigInt()
JParser.parseUnsafe(expForm._1).asBigInt == BigDecimal(expForm._2).toBigInt
)
}

Expand Down

0 comments on commit 6eb482e

Please sign in to comment.