Skip to content

Commit

Permalink
FIX formatting (3)
Browse files Browse the repository at this point in the history
  • Loading branch information
ilmirons committed Feb 14, 2025
1 parent d2dd387 commit bbebe50
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions ast/shared/src/test/scala/jawn/ArbitraryUtil.scala
Original file line number Diff line number Diff line change
Expand Up @@ -66,11 +66,11 @@ object ArbitraryUtil {
// Valid JSON numbers with an exact double representation and in the Long range

implicit lazy val expNotationNums: List[(String, Double)] = List(
("2e3", 2e3),
("2.5e0", 2.5e0),
("2e+3", 2e+3),
("2.5e-1", 2.5e-1),
("9.223372036854776e18", 9.223372036854776e18),
("-9.223372036854776e+18", -9.223372036854776e18)
)
("2e3", 2e3),
("2.5e0", 2.5e0),
("2e+3", 2e+3),
("2.5e-1", 2.5e-1),
("9.223372036854776e18", 9.223372036854776e18),
("-9.223372036854776e+18", -9.223372036854776e18)
)
}
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 @@ -26,7 +26,7 @@ import org.scalacheck.{Prop, Properties}

import scala.util.{Success, Try}
import ArbitraryUtil._
import Prop.{forAll}
import Prop.forAll

class AstTest extends Properties("AstTest") with AstTestPlatform {

Expand Down

0 comments on commit bbebe50

Please sign in to comment.