From 6c0092ce4ff6a33b7a7fdbc7d7afe2f2e2680ced Mon Sep 17 00:00:00 2001 From: charles37 Date: Thu, 31 Oct 2024 15:58:56 -0400 Subject: [PATCH] gpio: fix button_print path --- hwci/tests/button_print.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/hwci/tests/button_print.py b/hwci/tests/button_print.py index 7825f59..b945314 100644 --- a/hwci/tests/button_print.py +++ b/hwci/tests/button_print.py @@ -7,9 +7,10 @@ import logging from utils.test_helpers import OneshotTest + class ButtonPressTest(OneshotTest): def __init__(self): - super().__init__(apps=["examples/tests/button_print"]) + super().__init__(apps=["tests/button_print"]) def oneshot_test(self, board): gpio = board.gpio @@ -45,4 +46,5 @@ def oneshot_test(self, board): logging.info("Button Press Test completed successfully") + test = ButtonPressTest()