Skip to content

Commit

Permalink
Updated timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
checkmarx-kobi-hagmi committed May 12, 2024
1 parent 7edea7b commit 02bed35
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public static void beforeClass() throws Exception {
// Used to decrease tests velocity
SWTBotPreferences.PLAYBACK_DELAY = 100;

SWTBotPreferences.TIMEOUT = 5000;
SWTBotPreferences.TIMEOUT = 8000;

_bot = new SWTWorkbenchBot();

Expand Down Expand Up @@ -242,7 +242,7 @@ protected static void waitUntilBranchComboIsEnabled() throws TimeoutException {
break;
}

_bot.sleep(5000);
_bot.sleep(8000);

retryIdx++;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ protected IStatus run(IProgressMonitor arg0) {
@Override
public void run() {
AbstractNotificationPopup notification = new NotificationPopUpUI(Display.getCurrent(), PluginConstants.CX_SCAN_CANCELED_TITLE, PluginConstants.CX_SCAN_CANCELED_DESCRIPTION, null, null, null);
notification.setDelayClose(5000);
notification.setDelayClose(8000);
notification.open();
}
});
Expand Down

0 comments on commit 02bed35

Please sign in to comment.