aboutsummaryrefslogtreecommitdiff
path: root/llvm_tools/bisect_clang_crashes_unittest.py
diff options
context:
space:
mode:
Diffstat (limited to 'llvm_tools/bisect_clang_crashes_unittest.py')
-rwxr-xr-xllvm_tools/bisect_clang_crashes_unittest.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm_tools/bisect_clang_crashes_unittest.py b/llvm_tools/bisect_clang_crashes_unittest.py
index 66923ffc..c9143450 100755
--- a/llvm_tools/bisect_clang_crashes_unittest.py
+++ b/llvm_tools/bisect_clang_crashes_unittest.py
@@ -40,7 +40,7 @@ class Test(unittest.TestCase):
mock_gsutil_ls.return_value = 'artifact1\nartifact2\nartifact3'
results = bisect_clang_crashes.get_artifacts(pattern)
self.assertEqual(results, ['artifact1', 'artifact2', 'artifact3'])
- mock_gsutil_ls.assert_called_once_with(['gsutil', 'ls', pattern],
+ mock_gsutil_ls.assert_called_once_with(['gsutil.py', 'ls', pattern],
stderr=subprocess.STDOUT,
encoding='utf-8')