We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 28edf2d commit 1484e08Copy full SHA for 1484e08
lldb/packages/Python/lldbsuite/test/decorators.py
@@ -1155,7 +1155,7 @@ def skipIfBuildType(types: list[str]):
1155
"""
1156
types = [name.lower() for name in types]
1157
return unittest.skipIf(
1158
- configuration.cmake_build_type is not None and
1159
- configuration.cmake_build_type.lower() in types,
+ configuration.cmake_build_type is not None
+ and configuration.cmake_build_type.lower() in types,
1160
"skip on {} build type(s)".format(", ".join(types)),
1161
)
0 commit comments