Skip to content

Commit 3f2a0eb

Browse files
committed
test(model): Make formatting of fragments construction consistent
Signed-off-by: Frank Viernau <[email protected]>
1 parent 1765a15 commit 3f2a0eb

File tree

1 file changed

+10
-12
lines changed

1 file changed

+10
-12
lines changed

model/src/test/kotlin/DependencyGraphTest.kt

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,11 @@ class DependencyGraphTest : WordSpec({
3535
id("org.apache.commons", "commons-collections4", "4.4"),
3636
id(group = "org.junit", artifact = "junit", version = "5")
3737
)
38-
val fragments =
39-
sortedSetOf(
40-
DependencyReference(0),
41-
DependencyReference(1),
42-
DependencyReference(2)
43-
)
38+
val fragments = sortedSetOf(
39+
DependencyReference(0),
40+
DependencyReference(1),
41+
DependencyReference(2)
42+
)
4443
val scopeMap = mapOf(
4544
"p1:scope1" to listOf(RootDependencyIndex(0), RootDependencyIndex(1)),
4645
"p2:scope2" to listOf(RootDependencyIndex(1), RootDependencyIndex(2))
@@ -63,12 +62,11 @@ class DependencyGraphTest : WordSpec({
6362
id("org.apache.commons", "commons-collections4", "4.4"),
6463
id("org.junit", "junit", "5")
6564
)
66-
val fragments =
67-
sortedSetOf(
68-
DependencyReference(0),
69-
DependencyReference(1),
70-
DependencyReference(2)
71-
)
65+
val fragments = sortedSetOf(
66+
DependencyReference(0),
67+
DependencyReference(1),
68+
DependencyReference(2)
69+
)
7270
val scopeMap = mapOf(
7371
qualifiedScopeName to listOf(RootDependencyIndex(0), RootDependencyIndex(1)),
7472
DependencyGraph.qualifyScope(qualifier, "scope2") to listOf(

0 commit comments

Comments
 (0)