Fix for CVE-2023-49438 (bsc#1218412). OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:flask/python-Flask-Security-Too?expand=0&rev=41
25 lines
875 B
Diff
25 lines
875 B
Diff
---
|
|
tests/conftest.py | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
--- a/tests/conftest.py
|
|
+++ b/tests/conftest.py
|
|
@@ -891,7 +891,7 @@ def client_nc(request, sqlalchemy_app):
|
|
return app.test_client(use_cookies=False)
|
|
|
|
|
|
-@pytest.fixture(params=["cl-sqlalchemy", "c2", "cl-mongo", "cl-peewee"])
|
|
+@pytest.fixture(params=["cl-sqlalchemy", "c2", "cl-peewee"])
|
|
def clients(request, app, tmpdir, realdburl, realmongodburl):
|
|
if request.param == "cl-sqlalchemy":
|
|
ds = sqlalchemy_setup(request, app, tmpdir, realdburl)
|
|
@@ -937,7 +937,7 @@ def get_message_local(app):
|
|
|
|
|
|
@pytest.fixture(
|
|
- params=["sqlalchemy", "sqlalchemy-session", "mongoengine", "peewee", "pony"]
|
|
+ params=["sqlalchemy", "sqlalchemy-session", "peewee", "pony"]
|
|
)
|
|
def datastore(request, app, tmpdir, realdburl, realmongodburl):
|
|
if request.param == "sqlalchemy":
|