Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: org.eclipse.text.quicksearch.tests
Bundle-Version: 1.3.100.qualifier
Bundle-Version: 1.3.200.qualifier
Require-Bundle: org.eclipse.core.runtime,
org.eclipse.text.quicksearch;bundle-version="1.0.300",
org.eclipse.core.resources,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ void testQuickAccessComputer() throws CoreException, IOException {
dialog.setBlockOnOpen(false);
dialog.open();
var display = dialog.getShell().getDisplay();
assertTrue(DisplayHelper.waitForCondition(display, 2000, () -> dialog.getResult().length > 0));
assertTrue(DisplayHelper.waitForCondition(display, 5000, () -> dialog.getResult().length > 0), "QuickSearchDialog failed to find results within timeout");
dialog.close();

// Wait for the QuickAccessComputer to return results, as the search happens asynchronously.
Expand Down
Loading