We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29508c9 commit aace69dCopy full SHA for aace69d
subprojects/ide-provisioning/src/test/groovy/org/gradle/profiler/ide/IdeProviderTest.groovy
@@ -18,16 +18,16 @@ class IdeProviderTest extends AbstractIdeProvisioningTest {
18
19
then:
20
outputContains("Downloading https://")
21
- assert ide.exists()
+ ide.exists()
22
23
when:
24
def ide2 = ideProvider.provideIde(IDEA.LATEST, ideHomeDir, downloadsDir)
25
26
27
outputContains("Downloading is skipped, get IDEA Community from cache")
28
- assert ide == ide2
+ ide == ide2
29
30
and:
31
- assert !downloadsDir.toFile().exists()
+ !downloadsDir.toFile().exists()
32
}
33
0 commit comments