Skip to content

Commit

Permalink
Fix editor file listener test
Browse files Browse the repository at this point in the history
  • Loading branch information
nquinquenel committed Mar 6, 2024
1 parent 4a18d25 commit 97a906f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ class EditorFileChangeListenerTests : AbstractSonarLintLightTests() {
listener.afterDocumentChange(file.getDocument()!!)

// wait for the notification to be delivered (because of the debounce delay)
Awaitility.await().atMost(Duration.ofSeconds(3)).untilAsserted {
Awaitility.await().atMost(Duration.ofSeconds(5)).untilAsserted {
verify(fakeNotifier, times(1)).notifyAsync(eq(fakeEngine), eq(module), capture(eventsCaptor))
}

Expand Down

0 comments on commit 97a906f

Please sign in to comment.