Skip to content

Commit 0c60614

Browse files
committed
Run scalafmt
1 parent fef76e7 commit 0c60614

File tree

3 files changed

+17
-4
lines changed

3 files changed

+17
-4
lines changed

test/steps/Steps.scala

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,16 @@ class Steps extends ScalaDsl with EN with Matchers {
2626
And("""^the stable native CLI Version is "(.*)"""") { native: String =>
2727
stableNativeCliVersion = native
2828
}
29-
29+
3030
And("""^the beta native CLI Version is "(.*)"""") { native: String =>
3131
betaNativeCliVersion = native
3232
// Insert all CLI versions after both stable and beta native CLI versions are set
33-
Mongo.insertCliVersions(stableCliVersion, betaCliVersion, stableNativeCliVersion, betaNativeCliVersion)
33+
Mongo.insertCliVersions(
34+
stableCliVersion,
35+
betaCliVersion,
36+
stableNativeCliVersion,
37+
betaNativeCliVersion
38+
)
3439
}
3540

3641
And("""^a request is made to the (.*) endpoint$""") { endpoint: String =>

test/steps/support/Mongo.scala

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,15 @@ object Mongo {
3838
betaNativeCliVersion: String
3939
): Seq[Completed] =
4040
appCollection
41-
.insertOne(Application("OK", stableCliVersion, betaCliVersion, stableNativeCliVersion, betaNativeCliVersion))
41+
.insertOne(
42+
Application(
43+
"OK",
44+
stableCliVersion,
45+
betaCliVersion,
46+
stableNativeCliVersion,
47+
betaNativeCliVersion
48+
)
49+
)
4250
.results()
4351

4452
def dropAppCollection(): Seq[Completed] = appCollection.drop().results()

test/steps/support/World.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ object World {
1515
var betaCliVersion = ""
1616

1717
var stableNativeCliVersion = ""
18-
18+
1919
var betaNativeCliVersion = ""
2020
}

0 commit comments

Comments
 (0)