Index: recipe_engine/unittests/recipe_api_test.py |
diff --git a/recipe_engine/unittests/recipe_api_test.py b/recipe_engine/unittests/recipe_api_test.py |
index a0632da05bf22d50b86c692b05819637a47b9fbf..6d7f1b8d12f7b53df0bf097eeddbf6d7f732a463 100755 |
--- a/recipe_engine/unittests/recipe_api_test.py |
+++ b/recipe_engine/unittests/recipe_api_test.py |
@@ -52,8 +52,8 @@ class TestProperties(unittest.TestCase): |
('', False, False), |
('.', False, False), |
('foo', True, False), |
- ('event.patchSet.ref', True, False), |
- ('event.patchSet.ref', False, True), |
+ ('weird.param.name', True, False), |
+ ('weird.param.name', False, True), |
('rietveld_url', True, False),): |
self.assertEqual( |
check(test, is_param_name=is_param_name), result, |