-
-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8165 from OpenMined/fix_guest_login
Fix guest login
- Loading branch information
Showing
2 changed files
with
3 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,9 +9,7 @@ | |
|
||
|
||
def test_domain_connect_to_gateway(domain_1_port, gateway_port): | ||
gateway_client: GatewayClient = sy.login( | ||
port=gateway_port, email="[email protected]", password="changethis" | ||
) | ||
gateway_client: GatewayClient = sy.login_as_guest(port=gateway_port) | ||
|
||
domain_client: DomainClient = sy.login( | ||
port=domain_1_port, email="[email protected]", password="changethis" | ||
|