From cccb7cf1a52f38182f56d947bd609027726c778b Mon Sep 17 00:00:00 2001 From: Raphael Isemann Date: Thu, 1 Oct 2020 14:32:02 +0200 Subject: [PATCH] [lldb] Add missing import for LLDB test decorators to TestStopHookScripted This test wasn't using decorators before and was missing the import, so my previous commit broke the test. --- lldb/test/API/commands/target/stop-hooks/TestStopHookScripted.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lldb/test/API/commands/target/stop-hooks/TestStopHookScripted.py b/lldb/test/API/commands/target/stop-hooks/TestStopHookScripted.py index a17f7131..014890e 100644 --- a/lldb/test/API/commands/target/stop-hooks/TestStopHookScripted.py +++ b/lldb/test/API/commands/target/stop-hooks/TestStopHookScripted.py @@ -7,7 +7,7 @@ Test stop hook functionality import lldb import lldbsuite.test.lldbutil as lldbutil from lldbsuite.test.lldbtest import * - +from lldbsuite.test.decorators import * class TestStopHooks(TestBase): -- 2.7.4