Skip to content

Commit

Permalink
remove incorrect "project?.coroutineScope?.cancel" in CloseAction - s…
Browse files Browse the repository at this point in the history
…cope is now correctly cancelled as a part of the project dispose

GitOrigin-RevId: aa9708c8dfd0c1372a18e9edb32749918c31e374
  • Loading branch information
develar authored and intellij-monorepo-bot committed Jan 23, 2023
1 parent 249d596 commit c99ae61
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class SourceCodeNavigationTest : CodeInsightFixtureTestCase<ModuleFixtureBuilder
override fun setUp() {
super.setUp()
val project = project
project.replaceService(FileEditorManager::class.java, FileEditorManagerImpl(project), testRootDisposable)
project.replaceService(FileEditorManager::class.java, FileEditorManagerImpl(project, project.coroutineScope), testRootDisposable)
}

fun testNavigationWithinFile() {
Expand Down

0 comments on commit c99ae61

Please sign in to comment.