Fix missing import for test
authorJeffrey Tan <jeffreytan@fb.com>
Tue, 26 Apr 2022 21:29:10 +0000 (14:29 -0700)
committerJeffrey Tan <jeffreytan@fb.com>
Tue, 26 Apr 2022 23:40:45 +0000 (16:40 -0700)
The last fix missed an import in one test file causing skipIfWindows attribute
can't be recognized.
I feel embarrassed to miss it. I have run all tests on Mac to make sure them
passing in this patch.

Differential Revision: https://reviews.llvm.org/D124479

lldb/test/API/symbol_ondemand/breakpoint_language/TestBreakpointLanguageOnDemand.py

index 1a1d364..38d4386 100644 (file)
@@ -5,6 +5,7 @@ with symbol load on-demand.
 
 
 import lldb
+from lldbsuite.test.decorators import *
 from lldbsuite.test.lldbtest import *
 import lldbsuite.test.lldbutil as lldbutil