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

Side by Side Diff: appengine/components/test_support/test_case.py

Issue 1860863002: Update copyright notice from Swarming to LUCI; add AUTHORS and CONTRIBUTORS. (Closed) Base URL: git@github.com:luci/luci-py.git@master
Patch Set: . Created 4 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
OLDNEW
1 # Copyright 2013 The Swarming Authors. All rights reserved. 1 # Copyright 2013 The LUCI Authors. All rights reserved.
2 # Use of this source code is governed by the Apache v2.0 license that can be 2 # Use of this source code is governed by the Apache v2.0 license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import base64 5 import base64
6 import contextlib 6 import contextlib
7 import datetime 7 import datetime
8 import logging 8 import logging
9 import time 9 import time
10 import urllib 10 import urllib
11 11
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after
229 yield 229 yield
230 except AssertionError: 230 except AssertionError:
231 # Assertion can happen if tests are running on GAE < 1.9.31, where 231 # Assertion can happen if tests are running on GAE < 1.9.31, where
232 # endpoints bug still exists (and causes webapp guts to raise assertion). 232 # endpoints bug still exists (and causes webapp guts to raise assertion).
233 # It should be rare (since we are switching to GAE >= 1.9.31), so don't 233 # It should be rare (since we are switching to GAE >= 1.9.31), so don't
234 # bother to check that assertion was indeed raised. Just skip it if it 234 # bother to check that assertion was indeed raised. Just skip it if it
235 # did. 235 # did.
236 pass 236 pass
237 finally: 237 finally:
238 self.expected_fail_status = None 238 self.expected_fail_status = None
OLDNEW
« no previous file with comments | « appengine/components/test_support/stats_framework_mock.py ('k') | appengine/components/test_support/test_env.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698