Home | History | Annotate | Download | only in py_utils

Lines Matching refs:strs

62     strs = ['You are attempting to access protected data with no configured',
64 self._AssertRunCommandRaisesError(strs, cloud_storage.CredentialsError)
67 strs = ['status=403', 'status 403', '403 Forbidden']
68 self._AssertRunCommandRaisesError(strs, cloud_storage.PermissionError)
71 strs = ['InvalidUriError', 'No such object', 'No URLs matched',
73 self._AssertRunCommandRaisesError(strs, cloud_storage.NotFoundError)
76 strs = ['500 Internal Server Error']
77 self._AssertRunCommandRaisesError(strs, cloud_storage.ServerError)
80 strs = ['Random string']
81 self._AssertRunCommandRaisesError(strs, cloud_storage.CloudStorageError)