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

Unified Diff: appengine/swarming/server/task_request_test.py

Issue 1906803003: Allow dots in dimension key name. (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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « appengine/swarming/server/task_request.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: appengine/swarming/server/task_request_test.py
diff --git a/appengine/swarming/server/task_request_test.py b/appengine/swarming/server/task_request_test.py
index f4dc2b3201d0ac67c04b4e9bffbf5597b9bd8bd3..12b24795f658916c3c61cb0c97c89bd081efdc63 100755
--- a/appengine/swarming/server/task_request_test.py
+++ b/appengine/swarming/server/task_request_test.py
@@ -374,7 +374,8 @@ class TaskRequestApiTest(TestCase):
_gen_request(
properties=dict(dimensions={u'id': u'b', u'a:': u'b'})), True)
task_request.make_request(
- _gen_request(properties=dict(dimensions={u'id': u'b'})), True)
+ _gen_request(
+ properties=dict(dimensions={u'id': u'b', u'a.': u'b'})), True)
with self.assertRaises(TypeError):
task_request.make_request(
« no previous file with comments | « appengine/swarming/server/task_request.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698