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

Unified Diff: lib/naclports/tests/test_installed_package.py

Issue 1285953002: Switch devenv to use pkg packages (Closed) Base URL: https://chromium.googlesource.com/external/naclports.git@toolchain_install
Patch Set: Created 5 years, 4 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 | « lib/naclports/source_package.py ('k') | ports/avrdude/build.sh » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/naclports/tests/test_installed_package.py
diff --git a/lib/naclports/tests/test_installed_package.py b/lib/naclports/tests/test_installed_package.py
index f3b0fb582f60c43055ed5811a4ba0eb3419c2a8e..e49899cce6298ce7b00d700ee24fab95de6d9b8b 100644
--- a/lib/naclports/tests/test_installed_package.py
+++ b/lib/naclports/tests/test_installed_package.py
@@ -29,6 +29,7 @@ class TestInstalledPackage(common.NaclportsTest):
@patch('naclports.package.Log', Mock())
@patch('naclports.package.RemoveFile')
@patch('os.path.lexists', Mock(return_value=True))
+ @patch('os.path.exists', Mock(return_value=True))
def testUninstall(self, remove_patch): # pylint: disable=no-self-use
pkg = CreateMockInstalledPackage()
pkg.Files = Mock(return_value=['f1', 'f2'])
« no previous file with comments | « lib/naclports/source_package.py ('k') | ports/avrdude/build.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698