mirror of
https://github.com/apache/superset.git
synced 2026-06-08 00:59:17 +00:00
feat(report): capture dashboard reports in specific states (#20552)
This commit is contained in:
@@ -29,5 +29,8 @@ app = create_app()
|
||||
def login(
|
||||
client: "FlaskClient[Any]", username: str = "admin", password: str = "general"
|
||||
):
|
||||
resp = client.post("/login/", data=dict(username=username, password=password))
|
||||
resp = client.post(
|
||||
"/login/",
|
||||
data=dict(username=username, password=password),
|
||||
).get_data(as_text=True)
|
||||
assert "User confirmation needed" not in resp
|
||||
|
||||
Reference in New Issue
Block a user