From 60767fa9089a268546344c4cd967e1c435746603 Mon Sep 17 00:00:00 2001 From: Alex Plate <aleksei.plate@jetbrains.com> Date: Fri, 14 Mar 2025 16:20:23 +0200 Subject: [PATCH] Fix the path to python --- tests/ui-py-tests/src/test/kotlin/PyCharmTest.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/ui-py-tests/src/test/kotlin/PyCharmTest.kt b/tests/ui-py-tests/src/test/kotlin/PyCharmTest.kt index 8961626e8..bb30cfbe7 100644 --- a/tests/ui-py-tests/src/test/kotlin/PyCharmTest.kt +++ b/tests/ui-py-tests/src/test/kotlin/PyCharmTest.kt @@ -74,7 +74,7 @@ class PyCharmTest { waitFor(duration = Duration.ofSeconds(30)) { // Waiting till the SDK will be detected by PyCharm this@startNewProject.findAll<ComponentFixture>(byXpath("//div[@class='SimpleColoredComponent']")) - .any { it.hasText { text -> text.text.contains("/usr/bin/python3") } } + .any { it.hasText { text -> text.text.contains("/usr/local/bin/python3") } } } button("Create").click() }