Skip to content

Commit

Permalink
Remove explicit asserts in test
Browse files Browse the repository at this point in the history
  • Loading branch information
6hundreds committed Jan 15, 2024
1 parent 29508c9 commit aace69d
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,16 @@ class IdeProviderTest extends AbstractIdeProvisioningTest {

then:
outputContains("Downloading https://")
assert ide.exists()
ide.exists()

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

then:
outputContains("Downloading is skipped, get IDEA Community from cache")
assert ide == ide2
ide == ide2

and:
assert !downloadsDir.toFile().exists()
!downloadsDir.toFile().exists()
}
}

0 comments on commit aace69d

Please sign in to comment.