Merge pull request #580 from coreos-inc/python-registry-v2-testfix
Fix test specs for recent change in tags endpoint in V1
This commit is contained in:
commit
1cf930eb9c
1 changed files with 3 additions and 3 deletions
|
@ -203,11 +203,11 @@ def build_index_specs():
|
|||
IndexTestSpec(url_for('v1.get_tags', repository=ORG_REPO)),
|
||||
|
||||
IndexTestSpec(url_for('v1.get_tag', repository=PUBLIC_REPO,
|
||||
tag=FAKE_TAG_NAME), NO_REPO, 400, 400, 400, 400),
|
||||
tag=FAKE_TAG_NAME), NO_REPO, 404, 404, 404, 404),
|
||||
IndexTestSpec(url_for('v1.get_tag', repository=PRIVATE_REPO,
|
||||
tag=FAKE_TAG_NAME), NO_REPO, 403, 403, 400, 400),
|
||||
tag=FAKE_TAG_NAME), NO_REPO, 403, 403, 404, 404),
|
||||
IndexTestSpec(url_for('v1.get_tag', repository=ORG_REPO,
|
||||
tag=FAKE_TAG_NAME), NO_REPO, 403, 403, 400, 400),
|
||||
tag=FAKE_TAG_NAME), NO_REPO, 403, 403, 404, 404),
|
||||
|
||||
IndexTestSpec(url_for('v1.put_tag', repository=PUBLIC_REPO,
|
||||
tag=FAKE_TAG_NAME),
|
||||
|
|
Reference in a new issue