From d495ad30fa962dfb87d14ccfab693ca05605ede8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bern=C3=A1t=20G=C3=A1bor?= Date: Wed, 8 Oct 2025 07:48:02 -0700 Subject: [PATCH] Fix notification crash MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Bernát Gábor --- src/main/resources/META-INF/plugin.xml | 2 +- src/test/kotlin/com/github/pyvenvmanage/UITest.kt | 12 ++---------- 2 files changed, 3 insertions(+), 11 deletions(-) diff --git a/src/main/resources/META-INF/plugin.xml b/src/main/resources/META-INF/plugin.xml index cf5f4e7..c4b4d1e 100644 --- a/src/main/resources/META-INF/plugin.xml +++ b/src/main/resources/META-INF/plugin.xml @@ -7,7 +7,7 @@ com.intellij.modules.platform - diff --git a/src/test/kotlin/com/github/pyvenvmanage/UITest.kt b/src/test/kotlin/com/github/pyvenvmanage/UITest.kt index c26ddd1..4cbe9d2 100644 --- a/src/test/kotlin/com/github/pyvenvmanage/UITest.kt +++ b/src/test/kotlin/com/github/pyvenvmanage/UITest.kt @@ -97,14 +97,6 @@ class UITest { @AfterAll @JvmStatic fun cleanUp() { -// CommonSteps(remoteRobot).closeProject() -// // remove the test project from recent -// remoteRobot.welcomeFrame { -// findText("demo").click(MouseButton.RIGHT_BUTTON) -// remoteRobot.actionMenuItem("Remove from Recent Projects…").click() -// button("Remove").click() -// } -// tmpDir.toFile().deleteRecursively() } } @@ -114,7 +106,7 @@ class UITest { with(projectViewTree) { findText("ve").click(MouseButton.RIGHT_BUTTON) remoteRobot.actionMenuItem("Set as Project Interpreter").click() -// findText("Updated SDK for project demo to:") + findText("Updated SDK for project demo to:") // wait for indexing to finish waitFor(ofMinutes(1)) { isDumbMode().not() } } @@ -127,7 +119,7 @@ class UITest { with(projectViewTree) { findText("ve").click(MouseButton.RIGHT_BUTTON) remoteRobot.actionMenuItem("Set as Module Interpreter").click() -// findText("Updated SDK for module demo to:") + findText("Updated SDK for module demo to:") // wait for indexing to finish waitFor(ofMinutes(1)) { isDumbMode().not() } }