test [ByteCodeViewer]: use proper community path for resolving test data

GitOrigin-RevId: c543a7f4a80d5742b6a926f5f6b06f7909d6a114
This commit is contained in:
Dmitry Zhuravlev
2025-12-16 13:04:54 +00:00
committed by intellij-monorepo-bot
parent 2a72453681
commit 29219263e9
@@ -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") }