Merge "Remove call to nonexistent NoSuchContext exception"

This commit is contained in:
Jenkins 2015-08-03 18:23:19 +00:00 committed by Gerrit Code Review
commit f29d02cfc7

View File

@ -1515,6 +1515,11 @@ class FakeContext(context.Context):
pass
@context.context(name="fake_hidden_context", order=1, hidden=True)
class FakeHiddenContext(FakeContext):
pass
@context.context(name="fake_user_context", order=1)
class FakeUserContext(FakeContext):