Skip to content

Commit

Permalink
Formatting.
Browse files Browse the repository at this point in the history
  • Loading branch information
colinrtwhite committed Dec 6, 2023
1 parent ba58639 commit 7f99b24
Showing 1 changed file with 5 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -251,8 +251,7 @@ abstract class AbstractFlexContainerTest<T : Any> {
verifySnapshot(container)
}

@Test
fun columnWithUpdatedCrossAxisAlignment() {
@Test fun columnWithUpdatedCrossAxisAlignment() {
val container = flexContainer(FlexDirection.Column)
container.width(Constraint.Fill)
container.height(Constraint.Fill)
Expand Down Expand Up @@ -438,8 +437,7 @@ abstract class AbstractFlexContainerTest<T : Any> {
verifySnapshot(column)
}

@Test
fun testDynamicElementUpdates() {
@Test fun testDynamicElementUpdates() {
val container = flexContainer(FlexDirection.Column)
container.width(Constraint.Fill)
container.height(Constraint.Fill)
Expand All @@ -460,8 +458,7 @@ abstract class AbstractFlexContainerTest<T : Any> {
verifySnapshot(container, "BCDE")
}

@Test
fun testDynamicContainerSize() {
@Test fun testDynamicContainerSize() {
val parent = column().apply {
width(Constraint.Fill)
height(Constraint.Fill)
Expand Down Expand Up @@ -516,8 +513,7 @@ abstract class AbstractFlexContainerTest<T : Any> {
verifySnapshot(parent, "single")
}

@Test
fun testFlexDistributesWeightEqually() {
@Test fun testFlexDistributesWeightEqually() {
val container = flexContainer(FlexDirection.Row)
container.width(Constraint.Fill)
container.height(Constraint.Fill)
Expand All @@ -528,8 +524,7 @@ abstract class AbstractFlexContainerTest<T : Any> {
verifySnapshot(container)
}

@Test
fun testFlexDistributesWeightUnequally() {
@Test fun testFlexDistributesWeightUnequally() {
val container = flexContainer(FlexDirection.Row)
container.width(Constraint.Fill)
container.height(Constraint.Fill)
Expand Down

0 comments on commit 7f99b24

Please sign in to comment.