Skip to content
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