Skip to content

chore(deps): update dependency scalafmt to v3.9.8 #397

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jul 8, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .git-blame-ignore-revs
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# scalafmt
f48a978dfc46fabf7acdcab70a90b242c5565caa
2 changes: 1 addition & 1 deletion .scalafmt.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = 3.9.6
version = 3.9.8

preset=default

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ private[scala] trait StepDsl extends BaseScalaDsl {
def apply(fun: Fun0): Unit = {
register() {
case Nil => fun.f()
case _ =>
case _ =>
throw new IncorrectStepDefinitionException()
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ private[scala] trait StepDsl extends BaseScalaDsl {
def apply(f: => Any): Unit = {
register() {
case Nil => f
case _ =>
case _ =>
throw new IncorrectStepDefinitionException()
}
}
Expand All @@ -23,7 +23,7 @@ private[scala] trait StepDsl extends BaseScalaDsl {
def apply(fun: () => Any): Unit = {
register() {
case Nil => fun.apply()
case _ =>
case _ =>
throw new IncorrectStepDefinitionException()
}
}
Expand Down