Skip to content

Commit 68393ed

Browse files
committed
apply scalafmt
1 parent dcfadbc commit 68393ed

File tree

1 file changed

+6
-24
lines changed

1 file changed

+6
-24
lines changed

modules/core/src/test/scala/org/scalasteward/core/vcs/VCSExtraAlgTest.scala

Lines changed: 6 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -35,26 +35,17 @@ class VCSExtraAlgTest extends AnyFunSuite with Matchers {
3535
val vcsExtraAlg = VCSExtraAlg.create[IO]
3636

3737
vcsExtraAlg
38-
.getReleaseRelatedUrls(
39-
uri"https://github.com/foo/foo",
40-
updateFoo
41-
)
38+
.getReleaseRelatedUrls(uri"https://github.com/foo/foo", updateFoo)
4239
.unsafeRunSync() shouldBe List.empty
4340

4441
vcsExtraAlg
45-
.getReleaseRelatedUrls(
46-
uri"https://github.com/foo/bar",
47-
updateBar
48-
)
42+
.getReleaseRelatedUrls(uri"https://github.com/foo/bar", updateBar)
4943
.unsafeRunSync() shouldBe List(
5044
ReleaseRelatedUrl.VersionDiff(uri"https://github.com/foo/bar/compare/v0.1.0...v0.2.0")
5145
)
5246

5347
vcsExtraAlg
54-
.getReleaseRelatedUrls(
55-
uri"https://github.com/foo/buz",
56-
updateBuz
57-
)
48+
.getReleaseRelatedUrls(uri"https://github.com/foo/buz", updateBuz)
5849
.unsafeRunSync() shouldBe List.empty
5950
}
6051

@@ -66,26 +57,17 @@ class VCSExtraAlgTest extends AnyFunSuite with Matchers {
6657
val githubOnPremVcsExtraAlg = VCSExtraAlg.create[IO]
6758

6859
githubOnPremVcsExtraAlg
69-
.getReleaseRelatedUrls(
70-
uri"https://github.on-prem.com/foo/foo",
71-
updateFoo
72-
)
60+
.getReleaseRelatedUrls(uri"https://github.on-prem.com/foo/foo", updateFoo)
7361
.unsafeRunSync() shouldBe List.empty
7462

7563
githubOnPremVcsExtraAlg
76-
.getReleaseRelatedUrls(
77-
uri"https://github.on-prem.com/foo/bar",
78-
updateBar
79-
)
64+
.getReleaseRelatedUrls(uri"https://github.on-prem.com/foo/bar", updateBar)
8065
.unsafeRunSync() shouldBe List(
8166
ReleaseRelatedUrl.VersionDiff(uri"https://github.on-prem.com/foo/bar/compare/v0.1.0...v0.2.0")
8267
)
8368

8469
githubOnPremVcsExtraAlg
85-
.getReleaseRelatedUrls(
86-
uri"https://github.on-prem.com/foo/buz",
87-
updateFoo
88-
)
70+
.getReleaseRelatedUrls(uri"https://github.on-prem.com/foo/buz", updateFoo)
8971
.unsafeRunSync() shouldBe List.empty
9072
}
9173
}

0 commit comments

Comments
 (0)