Skip to content

Commit

Permalink
Change settings name
Browse files Browse the repository at this point in the history
  • Loading branch information
takahirom committed Jun 7, 2024
1 parent 4604447 commit 6696919
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ class ComposeTest {
modifier = Modifier
.clip(shape = RoundedCornerShape(16.dp))
.background(Color.Gray)
.testTag("SettingsDialog")
.testTag("Settings")
.size(100.dp)
) {
Text("Settings")
Expand All @@ -92,7 +92,7 @@ class ComposeTest {
}

composeTestRule
.onNodeWithTag("SettingsDialog")
.onNodeWithTag("Settings")
.captureRoboImage(
roborazziOptions = RoborazziOptions(
recordOptions = RoborazziOptions.RecordOptions(
Expand All @@ -110,7 +110,7 @@ class ComposeTest {
modifier = Modifier
.clip(shape = RoundedCornerShape(16.dp))
.background(Color.Gray)
.testTag("SettingsDialog")
.testTag("Settings")
.size(100.dp)
) {
Text("Settings")
Expand All @@ -119,7 +119,7 @@ class ComposeTest {
}

composeTestRule
.onNodeWithTag("SettingsDialog")
.onNodeWithTag("Settings")
.captureRoboImage()
}

Expand Down

0 comments on commit 6696919

Please sign in to comment.