Skip to content

Commit

Permalink
fix: scalafmt PR broke master, apply scalafmt by hand
Browse files Browse the repository at this point in the history
  • Loading branch information
mbaechler committed Jan 18, 2025
1 parent 35c3728 commit 4c389d6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions tests/js/src/test/scala/cron4s/JsCronSpec.scala
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,8 @@ class AttoCronSpec extends AnyFlatSpec with CronSpec {
class CronParserComparisonSpec extends AnyFlatSpec with Matchers {
import CronSpec._

"Parser-Combinators and Atto parsers" should "parse valid expressions with the same result" in {
"Parser-Combinators and Atto parsers" should "parse valid expressions with the same result" in
forAll(CronSpec.validExpressions) { expr =>
parsing.Parser.parse(expr) shouldBe atto.Parser.parse(expr)
}
}
}
3 changes: 1 addition & 2 deletions tests/jvm/src/test/scala/cron4s/JvmCronSpec.scala
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,8 @@ class AttoCronSpec extends AnyFlatSpec with CronSpec {
class CronParserComparisonSpec extends AnyFlatSpec with Matchers {
import CronSpec._

"Parser-Combinators and Atto parsers" should "parse valid expressions with the same result" in {
"Parser-Combinators and Atto parsers" should "parse valid expressions with the same result" in
forAll(CronSpec.validExpressions) { expr =>
parsing.Parser.parse(expr) shouldBe atto.Parser.parse(expr)
}
}
}

0 comments on commit 4c389d6

Please sign in to comment.