forked from loafle/openapi-generator-original
Use range for dependencies in python-flask (#3470)
This commit is contained in:
committed by
William Cheng
parent
b9e863a9ca
commit
049f69c55b
@@ -38,7 +38,7 @@ class TestUserController(BaseTestCase):
|
||||
|
||||
Creates list of users with given input array
|
||||
"""
|
||||
body = []
|
||||
body = [{}]
|
||||
headers = {
|
||||
'Content-Type': 'application/json',
|
||||
}
|
||||
@@ -57,7 +57,7 @@ class TestUserController(BaseTestCase):
|
||||
|
||||
Creates list of users with given input array
|
||||
"""
|
||||
body = []
|
||||
body = [{}]
|
||||
headers = {
|
||||
'Content-Type': 'application/json',
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user