[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.
This commit is contained in:
Raphael Isemann 2020-10-01 14:32:02 +02:00
parent 4f13b99929
commit cccb7cf1a5
1 changed files with 1 additions and 1 deletions

View File

@ -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):