fix(row_level_security): Correct api response code for update (#34672)

This commit is contained in:
Mehmet Salih Yavuz
2025-08-13 23:51:10 +03:00
committed by GitHub
parent 58ebc57285
commit ecfb9f7d7c
2 changed files with 2 additions and 2 deletions

View File

@@ -471,7 +471,7 @@ class TestRowLevelSecurityUpdateAPI(SupersetTestCase):
rv = self.client.put(f"/api/v1/rowlevelsecurity/{rls.id}", json=payload)
status_code, _data = rv.status_code, json.loads(rv.data.decode("utf-8")) # noqa: F841
assert status_code == 201
assert status_code == 200
rls = (
db.session.query(RowLevelSecurityFilter)