FUS: run env tests in separate build

GitOrigin-RevId: a1d4b551651d27b7d7eff490c04f6ed81417cfd9
This commit is contained in:
Anastasia Ivanova
2020-04-24 18:58:42 +07:00
committed by intellij-monorepo-bot
parent 9629463526
commit 55e32ca12e
2 changed files with 2 additions and 2 deletions

View File

@@ -139,6 +139,5 @@
<orderEntry type="module" module-name="intellij.statsCollector.tests" scope="TEST" />
<orderEntry type="module" module-name="intellij.filePrediction" scope="RUNTIME" />
<orderEntry type="module" module-name="intellij.textmate" scope="TEST" />
<orderEntry type="module" module-name="intellij.platform.statistics.envTests" scope="TEST" />
</component>
</module>

View File

@@ -42,8 +42,9 @@ internal abstract class StatisticsUploaderBaseTest : HeavyPlatformTestCase() {
addSuppressedException(e)
}
finally {
val disposable = longRunningThreadDisposable
super.tearDown()
Disposer.dispose(longRunningThreadDisposable)
Disposer.dispose(disposable)
}
}
}