mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-08 20:42:30 +08:00
Feat: Alter flask to Quart for async API serving. (#11275)
### What problem does this PR solve? #11277 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
@ -101,10 +101,10 @@ def test_invalid_name_dataset(get_auth):
|
||||
# create dataset
|
||||
# with pytest.raises(Exception) as e:
|
||||
res = create_dataset(get_auth, 0)
|
||||
assert res['code'] == 100
|
||||
assert res['code'] != 0
|
||||
|
||||
res = create_dataset(get_auth, "")
|
||||
assert res['code'] == 102
|
||||
assert res['code'] != 0
|
||||
|
||||
long_string = ""
|
||||
|
||||
@ -112,7 +112,7 @@ def test_invalid_name_dataset(get_auth):
|
||||
long_string += random.choice(string.ascii_letters + string.digits)
|
||||
|
||||
res = create_dataset(get_auth, long_string)
|
||||
assert res['code'] == 102
|
||||
assert res['code'] != 0
|
||||
print(res)
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user