Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(279)

Unified Diff: native_client_sdk/src/build_tools/tests/build_version_test.py

Issue 2842513002: Update nacl SDK code to match recent changes to lastchange.py (Closed)
Patch Set: . Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « native_client_sdk/src/build_tools/build_version.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: native_client_sdk/src/build_tools/tests/build_version_test.py
diff --git a/native_client_sdk/src/build_tools/tests/build_version_test.py b/native_client_sdk/src/build_tools/tests/build_version_test.py
index 904d966ce923adae9e6bf7503602073d776fda12..d36c58ac67b530b8e13edd87dd6c73dd075a0a5e 100755
--- a/native_client_sdk/src/build_tools/tests/build_version_test.py
+++ b/native_client_sdk/src/build_tools/tests/build_version_test.py
@@ -24,13 +24,8 @@ ProcInfo = collections.namedtuple('ProcInfo', ['returncode', 'output'])
class TestCase(unittest.TestCase):
def setUp(self):
- self.fetch_svn = mock.patch('lastchange.FetchSVNRevision').start()
- self.fetch_git_svn = mock.patch('lastchange.FetchGitSVNRevision').start()
self.run_git = mock.patch('lastchange.RunGitCommand').start()
- self.fetch_svn.return_value = None
- self.fetch_git_svn.return_value = None
-
def tearDown(self):
mock.patch.stopall()
« no previous file with comments | « native_client_sdk/src/build_tools/build_version.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698