From 7f99b247f2440e3f21696fc7a70f000dc6ba0e6d Mon Sep 17 00:00:00 2001 From: Colin White Date: Wed, 6 Dec 2023 16:09:46 -0500 Subject: [PATCH] Formatting. --- .../redwood/layout/AbstractFlexContainerTest.kt | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/redwood-layout-shared-test/src/commonMain/kotlin/app/cash/redwood/layout/AbstractFlexContainerTest.kt b/redwood-layout-shared-test/src/commonMain/kotlin/app/cash/redwood/layout/AbstractFlexContainerTest.kt index b6c27ddabc..8010334e13 100644 --- a/redwood-layout-shared-test/src/commonMain/kotlin/app/cash/redwood/layout/AbstractFlexContainerTest.kt +++ b/redwood-layout-shared-test/src/commonMain/kotlin/app/cash/redwood/layout/AbstractFlexContainerTest.kt @@ -251,8 +251,7 @@ abstract class AbstractFlexContainerTest { verifySnapshot(container) } - @Test - fun columnWithUpdatedCrossAxisAlignment() { + @Test fun columnWithUpdatedCrossAxisAlignment() { val container = flexContainer(FlexDirection.Column) container.width(Constraint.Fill) container.height(Constraint.Fill) @@ -438,8 +437,7 @@ abstract class AbstractFlexContainerTest { verifySnapshot(column) } - @Test - fun testDynamicElementUpdates() { + @Test fun testDynamicElementUpdates() { val container = flexContainer(FlexDirection.Column) container.width(Constraint.Fill) container.height(Constraint.Fill) @@ -460,8 +458,7 @@ abstract class AbstractFlexContainerTest { verifySnapshot(container, "BCDE") } - @Test - fun testDynamicContainerSize() { + @Test fun testDynamicContainerSize() { val parent = column().apply { width(Constraint.Fill) height(Constraint.Fill) @@ -516,8 +513,7 @@ abstract class AbstractFlexContainerTest { verifySnapshot(parent, "single") } - @Test - fun testFlexDistributesWeightEqually() { + @Test fun testFlexDistributesWeightEqually() { val container = flexContainer(FlexDirection.Row) container.width(Constraint.Fill) container.height(Constraint.Fill) @@ -528,8 +524,7 @@ abstract class AbstractFlexContainerTest { verifySnapshot(container) } - @Test - fun testFlexDistributesWeightUnequally() { + @Test fun testFlexDistributesWeightUnequally() { val container = flexContainer(FlexDirection.Row) container.width(Constraint.Fill) container.height(Constraint.Fill)