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

Unified Diff: cros_mark_as_stable_unittest.py

Issue 3029045: cros_mark_as_stable: fix unittests (Closed) Base URL: http://src.chromium.org/git/crosutils.git
Patch Set: Created 10 years, 5 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cros_mark_as_stable_unittest.py
diff --git a/cros_mark_as_stable_unittest.py b/cros_mark_as_stable_unittest.py
index ade4c655d52874dd3489d312538c6d115b194c62..8659910bcc14bf2ea66d824bf7fa33c464083f29 100755
--- a/cros_mark_as_stable_unittest.py
+++ b/cros_mark_as_stable_unittest.py
@@ -160,8 +160,8 @@ class EBuildStableMarkerTest(mox.MoxTestBase):
# Prepare mock fileinput. This tests to make sure both the commit id
# and keywords are changed correctly.
- mock_file = ['EAPI=2', 'EGIT_COMMIT=old_id', 'KEYWORDS=\"~x86 ~arm\"',
- 'src_unpack(){}']
+ mock_file = ['EAPI=2', 'CROS_WORKON_COMMIT=old_id',
+ 'KEYWORDS=\"~x86 ~arm\"', 'src_unpack(){}']
cros_mark_as_stable.shutil.copyfile(
self.m_ebuild.ebuild_path_no_version + '-9999.ebuild',
@@ -169,7 +169,7 @@ class EBuildStableMarkerTest(mox.MoxTestBase):
cros_mark_as_stable.fileinput.input(self.revved_ebuild_path,
inplace=1).AndReturn(mock_file)
m_file.write('EAPI=2')
- m_file.write('EGIT_COMMIT="my_id"')
+ m_file.write('CROS_WORKON_COMMIT="my_id"')
m_file.write('KEYWORDS="x86 arm"')
m_file.write('src_unpack(){}')
cros_mark_as_stable._RunCommand('git add ' + self.revved_ebuild_path)
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698