From 29219263e91ebbb791e589489bdf2524ad0ea2b3 Mon Sep 17 00:00:00 2001 From: Dmitry Zhuravlev Date: Mon, 15 Dec 2025 21:51:31 +0100 Subject: [PATCH] test [ByteCodeViewer]: use proper community path for resolving test data GitOrigin-RevId: c543a7f4a80d5742b6a926f5f6b06f7909d6a114 --- .../com/intellij/byteCodeViewer/BytecodeLineMappingTest.kt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/plugins/ByteCodeViewer/test/com/intellij/byteCodeViewer/BytecodeLineMappingTest.kt b/plugins/ByteCodeViewer/test/com/intellij/byteCodeViewer/BytecodeLineMappingTest.kt index 880eb88f0d88..c27b36949ab0 100644 --- a/plugins/ByteCodeViewer/test/com/intellij/byteCodeViewer/BytecodeLineMappingTest.kt +++ b/plugins/ByteCodeViewer/test/com/intellij/byteCodeViewer/BytecodeLineMappingTest.kt @@ -1,7 +1,6 @@ // Copyright 2000-2025 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. package com.intellij.byteCodeViewer -import com.intellij.openapi.application.PathManager import com.intellij.testFramework.PlatformTestUtil import com.intellij.testFramework.fixtures.BasePlatformTestCase @@ -714,7 +713,7 @@ internal class BytecodeLineMappingTest : BasePlatformTestCase() { } private val testDataPath: String - get() = PathManager.getHomePath() + "/community/plugins/byteCodeViewer/testData/lineMapping" + get() = PlatformTestUtil.getCommunityPath() + "/plugins/ByteCodeViewer/testData/lineMapping" private val simple1: Fixture by lazy { createFixture("simple1") }