mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
test [ByteCodeViewer]: prevent static fixtures initialization
E.g., LeakHunter may initialize such static fields and fail another test. Follow-up: 1b44b118d470ace068774d9714eafc2704119e86 GitOrigin-RevId: af3af1e70db95c294c0dfedcba0c166eeb58da9a
This commit is contained in:
committed by
intellij-monorepo-bot
parent
5ca344e07e
commit
2a72453681
@@ -716,10 +716,10 @@ internal class BytecodeLineMappingTest : BasePlatformTestCase() {
|
||||
private val testDataPath: String
|
||||
get() = PathManager.getHomePath() + "/community/plugins/byteCodeViewer/testData/lineMapping"
|
||||
|
||||
private val simple1: Fixture = createFixture("simple1")
|
||||
private val simple1: Fixture by lazy { createFixture("simple1") }
|
||||
|
||||
private val simple2: Fixture = createFixture("simple2")
|
||||
private val simple2: Fixture by lazy { createFixture("simple2") }
|
||||
|
||||
private val simple3: Fixture = createFixture("simple3")
|
||||
private val simple3: Fixture by lazy { createFixture("simple3") }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user