Skip to content

Commit

Permalink
Update burst to v0.6.0 (#2403)
Browse files Browse the repository at this point in the history
* Update burst to v0.6.0

* Specify default parameter values

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Jesse Wilson <[email protected]>
  • Loading branch information
renovate[bot] and squarejesse authored Oct 23, 2024
1 parent c85dc93 commit 294decd
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ paparazzi = "1.3.2"
zipline = "1.17.0"
coil = "3.0.0-rc01"
okio = "3.9.1"
burst = "0.5.0"
burst = "0.6.0"

[libraries]
kotlin-compiler = { module = "org.jetbrains.kotlin:kotlin-compiler", version.ref = "kotlin" }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ enum class ComposeLauncher {

@Burst
class ChangeListenerTest(
private val launcher: ComposeLauncher,
private val launcher: ComposeLauncher = ComposeLauncher.Direct,
) {
private fun <T> CoroutineScope.launchComposition(
widgetSystem: TestSchemaWidgetSystem<WidgetValue>,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import org.junit.Rule

@Burst
class ComposeUiBoxTest(
layoutDirection: LayoutDirection,
layoutDirection: LayoutDirection = LayoutDirection.LTR,
) : AbstractBoxTest<@Composable () -> Unit>() {

@get:Rule
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ import org.junit.Rule

@Burst
class ComposeUiFlexContainerTest(
layoutDirection: LayoutDirection,
layoutDirection: LayoutDirection = LayoutDirection.LTR,
) : AbstractFlexContainerTest<@Composable () -> Unit>() {

override val widgetFactory = ComposeUiTestWidgetFactory
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import org.junit.Rule

@Burst
class ViewBoxTest(
layoutDirection: LayoutDirection,
layoutDirection: LayoutDirection = LayoutDirection.LTR,
) : AbstractBoxTest<View>() {

@get:Rule
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ import org.junit.Rule

@Burst
class ViewFlexContainerTest(
layoutDirection: LayoutDirection,
layoutDirection: LayoutDirection = LayoutDirection.LTR,
) : AbstractFlexContainerTest<View>() {

@get:Rule
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ import org.junit.Rule

@Burst
class ComposeUiLazyListTest(
layoutDirection: LayoutDirection,
layoutDirection: LayoutDirection = LayoutDirection.LTR,
) : AbstractFlexContainerTest<@Composable () -> Unit>() {

@get:Rule
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ import org.junit.Rule

@Burst
class ViewLazyListAsFlexContainerTest(
layoutDirection: LayoutDirection,
layoutDirection: LayoutDirection = LayoutDirection.LTR,
) : AbstractFlexContainerTest<View>() {

@get:Rule
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import org.junit.Rule

@Burst
class ViewRedwoodViewTest(
layoutDirection: LayoutDirection,
layoutDirection: LayoutDirection = LayoutDirection.LTR,
) : AbstractRedwoodViewTest<View, RedwoodLayout>() {
@get:Rule
val paparazzi = Paparazzi(
Expand Down

0 comments on commit 294decd

Please sign in to comment.