Skip to content

Commit 5705140

Browse files
committed
Update IntelliJPluginSpec test for empty plugin ID
Ensure the "idea.required.plugins.id" property is set to an empty string instead of not being present in the test command properties. This change helps in maintaining consistency and avoids potential issues when expecting the property to be present.
1 parent 9765b12 commit 5705140

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/kotlin/org/jetbrains/intellij/IntelliJPluginSpec.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ class IntelliJPluginSpec : IntelliJPluginSpecBase() {
4646
val testCommand = parseCommand(it.output)
4747

4848
assertPathParameters(testCommand, sandboxPath)
49-
assertFalse(testCommand.properties.containsKey("idea.required.plugins.id"))
49+
assertEquals(testCommand.properties.get("idea.required.plugins.id"), "")
5050

5151
assertEquals("boot.jar", File(testCommand.xclasspath).name)
5252
assertEquals("lib", File(testCommand.xclasspath).parentFile.name)

0 commit comments

Comments
 (0)