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

Side by Side Diff: appengine/machine_provider/handlers_endpoints_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_endpoints.py.""" 6 """Unit tests for handlers_endpoints.py."""
7 7
8 import json 8 import json
9 import unittest 9 import unittest
10 10
11 import test_env 11 import test_env
12 test_env.setup_test_env() 12 test_env.setup_test_env()
(...skipping 481 matching lines...) Expand 10 before | Expand all | Expand 10 after
494 rpc_messages.LeaseResponse, 494 rpc_messages.LeaseResponse,
495 ) 495 )
496 self.assertEqual( 496 self.assertEqual(
497 lease_response.error, 497 lease_response.error,
498 rpc_messages.LeaseRequestError.UNSPECIFIED_TOPIC, 498 rpc_messages.LeaseRequestError.UNSPECIFIED_TOPIC,
499 ) 499 )
500 500
501 501
502 if __name__ == '__main__': 502 if __name__ == '__main__':
503 unittest.main() 503 unittest.main()
OLDNEW
« no previous file with comments | « appengine/machine_provider/handlers_endpoints.py ('k') | appengine/machine_provider/handlers_queues.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698