Skip to content

Commit e4b810a

Browse files
committed
fix
1 parent facd244 commit e4b810a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/management/test_user.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1048,7 +1048,7 @@ def test_search_all(self):
10481048
)
10491049

10501050
# Test success flow with tenant_role_ids and tenant_role_names
1051-
with patch("requests.post") as mock_post:
1051+
with patch("httpx.post") as mock_post:
10521052
network_resp = mock.Mock()
10531053
network_resp.ok = True
10541054
network_resp.json.return_value = json.loads(
@@ -1294,7 +1294,7 @@ def test_search_all_test_users(self):
12941294
)
12951295

12961296
# Test success flow with tenant_role_ids and tenant_role_names
1297-
with patch("requests.post") as mock_post:
1297+
with patch("httpx.post") as mock_post:
12981298
network_resp = mock.Mock()
12991299
network_resp.ok = True
13001300
network_resp.json.return_value = json.loads(

0 commit comments

Comments
 (0)