This is an automated email from the ASF dual-hosted git repository.
zhongjiajie pushed a commit to branch main
in repository
https://gitbox.apache.org/repos/asf/dolphinscheduler-sdk-python.git
The following commit(s) were added to refs/heads/main by this push:
new f16599f fix: Integration test error (#129)
f16599f is described below
commit f16599f09b2aa5e2e0e610d2564e5a3aa7d54d31
Author: Jay Chung <[email protected]>
AuthorDate: Mon Dec 25 19:11:58 2023 +0800
fix: Integration test error (#129)
related change: https://github.com/apache/dolphinscheduler/pull/15254
[run-it]
---
tests/integration/test_user.py | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/tests/integration/test_user.py b/tests/integration/test_user.py
index 74248fa..01e450d 100644
--- a/tests/integration/test_user.py
+++ b/tests/integration/test_user.py
@@ -86,8 +86,9 @@ def test_update_user():
password="test-password-",
email="[email protected]",
phone="17366637766",
- tenant="test-tenant-updated",
- queue="test-queue-updated",
+ # java gateway will raise error when tenant or queue change
+ tenant=user.tenant,
+ queue=user.queue,
status=2,
)
user_ = User.get_user(user.user_id)