Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
takahirom committed Oct 12, 2024
1 parent e98a67a commit 924da35
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,7 @@ class SizeChangeTest {
@get:Rule
val composeTestRule = createAndroidComposeRule<MainActivity>()

@Test(
expected = AssertionError::class
)
@Test
fun sizeChangeTest() {
boxedEnvironment {
ROBORAZZI_DEBUG = true
Expand All @@ -60,7 +58,8 @@ class SizeChangeTest {
taskType = RoborazziTaskType.Compare
)
)
assert(expectedOutput.exists())
println(expectedCompareOutput.absolutePath + ":" + expectedCompareOutput.exists())
assert(expectedCompareOutput.exists())
} finally {
expectedCompareOutput.delete()
}
Expand Down

0 comments on commit 924da35

Please sign in to comment.