dbaccess/qa/uitest/query/tdf99619_create_join_undo_redo.py | 2 -- 1 file changed, 2 deletions(-)
New commits: commit 56ebc8519becce50215f62ece666f4a394b02399 Author: RHUSHYA.K.C <[email protected]> AuthorDate: Mon Feb 9 12:10:03 2026 +0530 Commit: Ilmari Lauhakangas <[email protected]> CommitDate: Sat Feb 21 08:07:33 2026 +0100 tdf#132293 Remove unused imports from tdf99619_create_join_undo_redo.py Removed unused 'time' and 'DEFAULT_SLEEP' imports from dbaccess/qa/uitest/query/tdf99619_create_join_undo_redo.py to improve code quality. Change-Id: If3f0f227e16463cba8b1491846c3822e10705dfd Reviewed-on: https://gerrit.libreoffice.org/c/core/+/198935 Reviewed-by: Ilmari Lauhakangas <[email protected]> Tested-by: Jenkins diff --git a/dbaccess/qa/uitest/query/tdf99619_create_join_undo_redo.py b/dbaccess/qa/uitest/query/tdf99619_create_join_undo_redo.py index 5aa55dc7557d..b3d78c3c2dbd 100644 --- a/dbaccess/qa/uitest/query/tdf99619_create_join_undo_redo.py +++ b/dbaccess/qa/uitest/query/tdf99619_create_join_undo_redo.py @@ -8,10 +8,8 @@ # from uitest.framework import UITestCase from uitest.uihelper.common import get_url_for_data_file, get_state_as_dict, select_by_text -from uitest.test import DEFAULT_SLEEP import sys -import time #Bug 99619 - query design segfault on redoing an undone table join creation class tdf99619(UITestCase):
