Skip to content

Commit

Permalink
Update IntelliJ version to 2022.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
virtuslab-bot authored Feb 21, 2023
1 parent d37d5c5 commit af6de71
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions core/driver/sources/src/main/resources/reference.conf
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ probe {
// Nevertheless, best if you provide both values that match because ide-probe uses `version.release`
// to choose the version and `version.build` number for naming cache directories etc.
version {
build = "212.5080.55"
release = "2021.2.1"
build = "223.8617.56"
release = "2022.3.2"

// `ext` stands for the file extension (file format). This config specifies which extension should be
// downloaded and installed. By default, ".zip" distributions of IntelliJ IDEA are downloaded. For now
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ class IdeProbeConfigTest extends IdeProbeFixture {
val probeConfig = IntelliJFixture.readIdeProbeConfig(config, configRoot)
// tests for the intellij: IntellijConfig field
assertTrue(probeConfig.intellij.isInstanceOf[IntellijConfig.Default])
assertEquals("212.5080.55", probeConfig.intellij.asInstanceOf[IntellijConfig.Default].version.build)
assertEquals(Some("2021.2.1"), probeConfig.intellij.asInstanceOf[IntellijConfig.Default].version.release)
assertEquals("223.8617.56", probeConfig.intellij.asInstanceOf[IntellijConfig.Default].version.build)
assertEquals(Some("2022.3.2"), probeConfig.intellij.asInstanceOf[IntellijConfig.Default].version.release)
assertEquals(Seq.empty, probeConfig.intellij.asInstanceOf[IntellijConfig.Default].plugins)
// test for the workspace: Option[WorkspaceConfig] field
assertEquals(None, probeConfig.workspace)
Expand Down Expand Up @@ -79,7 +79,7 @@ class IdeProbeConfigTest extends IdeProbeFixture {
// tests for the intellij: IntellijConfig field
assertTrue(probeConfig.intellij.isInstanceOf[IntellijConfig.Default])
assertEquals("201.6668.121", probeConfig.intellij.asInstanceOf[IntellijConfig.Default].version.build)
assertEquals(Some("2021.2.1"), probeConfig.intellij.asInstanceOf[IntellijConfig.Default].version.release)
assertEquals(Some("2022.3.2"), probeConfig.intellij.asInstanceOf[IntellijConfig.Default].version.release)
assertEquals(1, probeConfig.intellij.plugins.size)
assertTrue(probeConfig.intellij.plugins.head.isInstanceOf[Plugin.Versioned])
assertEquals("org.intellij.scala", probeConfig.intellij.plugins.head.asInstanceOf[Plugin.Versioned].id)
Expand Down

0 comments on commit af6de71

Please sign in to comment.