Skip to content

Commit aace69d

Browse files
committed
Remove explicit asserts in test
1 parent 29508c9 commit aace69d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

subprojects/ide-provisioning/src/test/groovy/org/gradle/profiler/ide/IdeProviderTest.groovy

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,16 @@ class IdeProviderTest extends AbstractIdeProvisioningTest {
1818

1919
then:
2020
outputContains("Downloading https://")
21-
assert ide.exists()
21+
ide.exists()
2222

2323
when:
2424
def ide2 = ideProvider.provideIde(IDEA.LATEST, ideHomeDir, downloadsDir)
2525

2626
then:
2727
outputContains("Downloading is skipped, get IDEA Community from cache")
28-
assert ide == ide2
28+
ide == ide2
2929

3030
and:
31-
assert !downloadsDir.toFile().exists()
31+
!downloadsDir.toFile().exists()
3232
}
3333
}

0 commit comments

Comments
 (0)