Skip to content

Commit

Permalink
Spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
Serock3 committed Nov 18, 2024
1 parent 9376bb1 commit 7f791bc
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions test/test-manager/src/tests/ui.rs
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ pub async fn test_ui_tunnel_settings(
rpc: ServiceClient,
mut mullvad_client: MullvadProxyClient,
) -> anyhow::Result<()> {
// NOTE: This test connects multiple times using various settings, some of which may cauase a
// NOTE: This test connects multiple times using various settings, some of which may cause a
// significant increase in connection time, e.g. multihop and OpenVPN. For this reason, it is
// preferable to only target low latency servers.
use helpers::custom_lists::LowLatency;
Expand Down Expand Up @@ -236,6 +236,15 @@ async fn test_custom_bridge_gui(
// `test_manager::tests::access_methods::test_shadowsocks`.

let gui_test = "custom-bridge.spec";

let relay_query = RelayQueryBuilder::new()
.openvpn()
.location(DEFAULT_LIST)
.build();
apply_settings_from_relay_query(&mut mullvad_client, relay_query)
.await
.unwrap();

let settings = mullvad_client.get_settings().await.unwrap();
let relay_list = mullvad_client.get_relay_locations().await.unwrap();
let relay_selector = helpers::get_daemon_relay_selector(&settings, relay_list);
Expand Down Expand Up @@ -278,7 +287,7 @@ pub async fn test_import_settings_ui(_: TestContext, rpc: ServiceClient) -> Resu
Ok(())
}

/// Test obufscation settings in the GUI
/// Test obfuscation settings in the GUI
#[test_function]
pub async fn test_obfuscation_settings_ui(_: TestContext, rpc: ServiceClient) -> Result<(), Error> {
let ui_result = run_test(&rpc, &["obfuscation.spec"]).await?;
Expand Down

0 comments on commit 7f791bc

Please sign in to comment.