Skip to content

Commit 46d0ec3

Browse files
committed
[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
1 parent 2b8db38 commit 46d0ec3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/packages/Python/lldbsuite/test/functionalities/return-value/TestReturnValue.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def affected_by_pr33042(self):
2020
"aarch64" and self.getPlatform() == "linux")
2121

2222
def affected_by_pr44132(self):
23-
return (self.getArchitecture() == "aarch64" and self.getPlatform() == "linux")
23+
return (self.getArchitecture() == "aarch64" and self.getPlatform() == "linux")
2424

2525
# ABIMacOSX_arm can't fetch simple values inside a structure
2626
def affected_by_radar_34562999(self):

0 commit comments

Comments
 (0)