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

Side by Side Diff: appengine/machine_provider/handlers_cron_test.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 #!/usr/bin/python 1 #!/usr/bin/python
2 # Copyright 2015 The Swarming Authors. All rights reserved. 2 # Copyright 2015 The LUCI Authors. All rights reserved.
3 # Use of this source code is governed by the Apache v2.0 license that can be 3 # Use of this source code is governed by the Apache v2.0 license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 """Unit tests for handlers_cron.py.""" 6 """Unit tests for handlers_cron.py."""
7 7
8 import datetime 8 import datetime
9 import json 9 import json
10 import unittest 10 import unittest
11 11
12 import test_env 12 import test_env
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 lease.put() 121 lease.put()
122 122
123 self.app.get( 123 self.app.get(
124 '/internal/cron/process-machine-reclamations', 124 '/internal/cron/process-machine-reclamations',
125 headers={'X-AppEngine-Cron': 'true'}, 125 headers={'X-AppEngine-Cron': 'true'},
126 ) 126 )
127 127
128 128
129 if __name__ == '__main__': 129 if __name__ == '__main__':
130 unittest.main() 130 unittest.main()
OLDNEW
« no previous file with comments | « appengine/machine_provider/handlers_cron.py ('k') | appengine/machine_provider/handlers_endpoints.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698