Skip to content

Commit d5ee4d5

Browse files
author
k9ert
committed
cleanup
1 parent a0b8a4c commit d5ee4d5

File tree

3 files changed

+8
-947
lines changed

3 files changed

+8
-947
lines changed

src/specter.py

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
from gui.screens.settings import HostSettings
2020
from gui.screens.mnemonic import MnemonicPrompt
2121
from stresstest import StressTest
22-
from stresstest_modular import ModularStressTestScreen as StressTestScreen
2322

2423
# small helper functions
2524
from helpers import gen_mnemonic, fix_mnemonic
@@ -564,14 +563,14 @@ async def stress_test_menu(self):
564563
"""Show stress test interface"""
565564
try:
566565
print("=== STARTING STRESS TEST MENU ===")
567-
# Create stress test instance with RAM path
568-
rampath = "/ramdisk" # Use the same RAM path as main
569-
stress_test = StressTest(rampath)
570-
571-
# Create and show stress test screen
572-
screen = StressTestScreen(stress_test)
573-
await self.gui.load_screen(screen)
574-
await screen.result()
566+
# Create stress test instance
567+
stress_test = StressTest()
568+
569+
# Initialize components
570+
await stress_test.initialize()
571+
572+
# Run continuous test directly
573+
await stress_test.run_continuous_test()
575574

576575
except Exception as e:
577576
print("=== STRESS TEST MENU ERROR ===")

src/stresstest_modular.py

Lines changed: 0 additions & 329 deletions
This file was deleted.

0 commit comments

Comments
 (0)