Skip to content

Commit dfe5d5e

Browse files
committed
build
1 parent 356095e commit dfe5d5e

File tree

5 files changed

+8
-5
lines changed

5 files changed

+8
-5
lines changed

plugins/toolkit/jetbrains-core/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ dependencies {
3636
localPlugin(project(":plugin-core"))
3737

3838
when (providers.gradleProperty("ideProfileName").get()) {
39-
"2023.3", "2024.1", "2024.2" -> {}
39+
"2023.3", "2024.1" -> {}
4040
else -> {
4141
bundledModule("intellij.platform.vcs.dvcs.impl")
4242
bundledModule("intellij.libraries.microba")

plugins/toolkit/jetbrains-rider/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ dependencies {
5555

5656
// https://github.com/JetBrains/intellij-platform-gradle-plugin/issues/1774
5757
when (providers.gradleProperty("ideProfileName").get()) {
58-
"2023.3", "2024.1", "2024.2" -> {}
58+
"2023.3", "2024.1" -> {}
5959
else -> {
6060
bundledModule("intellij.rider")
6161
}

plugins/toolkit/jetbrains-rider/tst/base/AwsReuseSolutionTestBase.kt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ abstract class AwsReuseSolutionTestBase : BaseTestWithSolution() {
1616
override val persistCaches: Boolean get() = false
1717
override val restoreNuGetPackages: Boolean get() = false
1818

19-
protected abstract fun getSolutionDirectoryName(): String
19+
override abstract fun getSolutionDirectoryName(): String
2020

2121
// 15 is a magic number (it's the return statement since they are all the same), but the only
2222
// example of it used that I could find it is used that way:
@@ -27,6 +27,5 @@ abstract class AwsReuseSolutionTestBase : BaseTestWithSolution() {
2727
XDebuggerTestHelper.toggleBreakpoint(project, getVirtualFileFromPath("src/HelloWorld/Function.cs", project.solutionDirectory), line - 1)
2828
}
2929

30-
override val testSolution = getSolutionDirectoryName()
3130
override val backendLoadedTimeout = backendStartTimeout
3231
}

plugins/toolkit/jetbrains-rider/tst/software/aws/toolkits/jetbrains/services/lambda/completion/DotNetHandlerCompletionTest.kt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,12 @@ import com.jetbrains.rider.test.base.BaseTestWithSolution
1313
import org.assertj.core.api.Assertions.assertThat
1414
import org.testng.annotations.BeforeSuite
1515
import org.testng.annotations.Test
16+
import software.aws.toolkits.jetbrains.utils.OPEN_SOLUTION_DIR_NAME
1617
import java.time.Duration
1718

1819
class DotNetHandlerCompletionTest : BaseTestWithSolution() {
20+
override fun getSolutionDirectoryName() = OPEN_SOLUTION_DIR_NAME
21+
1922
override val backendLoadedTimeout: Duration = backendStartTimeout
2023

2124
override val waitForCaches = true

plugins/toolkit/jetbrains-rider/tst/software/aws/toolkits/jetbrains/services/lambda/dotnet/LambdaGutterMarkHighlightingTest.kt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ class LambdaGutterMarkHighlightingTest : BaseTestWithMarkup() {
1919
}
2020

2121
override val backendLoadedTimeout: Duration = backendStartTimeout
22-
override val testSolution = "SamHelloWorldApp"
22+
23+
override fun getSolutionDirectoryName() = "SamHelloWorldApp"
2324

2425
@Test
2526
fun testClass_FunctionClass_Detected() = verifyLambdaGutterMark()

0 commit comments

Comments
 (0)