[lldb] Remove tab from TestReturnValue.py

Mixing tabs and spaces makes Python exit with this error:

  File "llvm/lldb/packages/Python/lldbsuite/test/functionalities/return-value/TestReturnValue.py", line 23
    return (self.getArchitecture() == "aarch64" and self.getPlatform() == "linux")
                                                                                 ^
TabError: inconsistent use of tabs and spaces in indentation
This commit is contained in:
Raphael Isemann 2019-12-03 11:44:23 +01:00
parent 2b8db387f2
commit 46d0ec3a80
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ class ReturnValueTestCase(TestBase):
"aarch64" and self.getPlatform() == "linux")
def affected_by_pr44132(self):
return (self.getArchitecture() == "aarch64" and self.getPlatform() == "linux")
return (self.getArchitecture() == "aarch64" and self.getPlatform() == "linux")
# ABIMacOSX_arm can't fetch simple values inside a structure
def affected_by_radar_34562999(self):