diff options
| -rw-r--r-- | lldb/test/lldbtest.py | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/test/lldbtest.py b/lldb/test/lldbtest.py index 3ce0d02d49d..ceb16177197 100644 --- a/lldb/test/lldbtest.py +++ b/lldb/test/lldbtest.py @@ -443,7 +443,7 @@ def skipOnLinux(func):          if "linux" in platform:              self.skipTest("skip on linux")          else: -            func(self, *args, **kwargs) +            func(*args, **kwargs)      return wrapper  class Base(unittest2.TestCase):  | 

