aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_scenarios.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_scenarios.py')
-rw-r--r--tests/test_scenarios.py23
1 files changed, 12 insertions, 11 deletions
diff --git a/tests/test_scenarios.py b/tests/test_scenarios.py
index 30d6087..4196445 100644
--- a/tests/test_scenarios.py
+++ b/tests/test_scenarios.py
@@ -32,15 +32,26 @@ sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
from _fixtures import fast_keys, staged # noqa: E402
fast_keys() # ~85ms -> ~2ms per keypress; see _fixtures.fast_keys
+from rich.text import Text # noqa: E402
+from textual.widgets import ( # noqa: E402
+ DataTable,
+ Input,
+ OptionList,
+ Static,
+ TextArea,
+)
+
from idatui import remote_ops # noqa: E402
+from idatui._sync import settle, wait_for # noqa: E402
from idatui.app import ( # noqa: E402
+ _HELP,
ConfirmScreen,
DecompView,
FunctionsPanel,
GraphView,
+ HelpScreen,
HexView,
IdaTui,
- HelpScreen,
ListingView,
QuitScreen,
SearchPalette,
@@ -48,20 +59,10 @@ from idatui.app import ( # noqa: E402
StructEditor,
SymbolPalette,
XrefsScreen,
- _HELP,
_str_display,
_word_occurrences,
)
from idatui.errors import IDAToolError # noqa: E402
-from textual.widgets import ( # noqa: E402
- DataTable,
- Input,
- OptionList,
- Static,
- TextArea,
-)
-from rich.text import Text # noqa: E402
-from idatui._sync import settle, wait_for # noqa: E402
PASS = FAIL = 0
STOP_AFTER = None