aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xllvm_tools/patch_manager_unittest.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm_tools/patch_manager_unittest.py b/llvm_tools/patch_manager_unittest.py
index 688c2fe6..62947ed1 100755
--- a/llvm_tools/patch_manager_unittest.py
+++ b/llvm_tools/patch_manager_unittest.py
@@ -463,7 +463,7 @@ class PatchManagerTest(unittest.TestCase):
# Simulate behavior for 'ApplyPatch()' when applying multiple applicable
# patches.
@CallCountsToMockFunctions
- def MultipleCallsToApplyPatches(call_count, _, path_to_patch):
+ def MultipleCallsToApplyPatches(call_count, _src_path, path_to_patch):
if call_count < 3:
self.assertEqual(
path_to_patch,
@@ -569,7 +569,7 @@ class PatchManagerTest(unittest.TestCase):
# Simulate behavior for 'ApplyPatch()' when applying multiple applicable
# patches.
@CallCountsToMockFunctions
- def MultipleCallsToApplyPatches(call_count, _, path_to_patch):
+ def MultipleCallsToApplyPatches(call_count, _src_path, path_to_patch):
if call_count < 3:
self.assertEqual(
path_to_patch,