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

Side by Side Diff: chrome/test/functional/chromeos_private_view.py

Issue 10176002: Set svn:executable bit on scripts that are executable. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add chrome/test/functional/media/worker_thread.py Created 8 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 #!/usr/bin/python 1 #!/usr/bin/env python
2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 import os 6 import os
7 7
8 import pyauto_functional # must be imported before pyauto 8 import pyauto_functional # must be imported before pyauto
9 import pyauto 9 import pyauto
10 10
11 11
(...skipping 18 matching lines...) Expand all
30 self.assertTrue(ext_id, 'Failed to install extension.') 30 self.assertTrue(ext_id, 'Failed to install extension.')
31 extension = self._GetExtensionInfoById(self.GetExtensionsInfo(), ext_id) 31 extension = self._GetExtensionInfoById(self.GetExtensionsInfo(), ext_id)
32 self.assertTrue(extension['is_enabled'], 32 self.assertTrue(extension['is_enabled'],
33 msg='Extension was not enabled on installation') 33 msg='Extension was not enabled on installation')
34 self.assertFalse(extension['allowed_in_incognito'], 34 self.assertFalse(extension['allowed_in_incognito'],
35 msg='Extension was allowed in incognito on installation.') 35 msg='Extension was allowed in incognito on installation.')
36 36
37 37
38 if __name__ == '__main__': 38 if __name__ == '__main__':
39 pyauto_functional.Main() 39 pyauto_functional.Main()
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698