diff options
| author | omahs <73983677+omahs@users.noreply.github.com> | 2025-05-11 09:49:55 +0200 |
|---|---|---|
| committer | omahs <73983677+omahs@users.noreply.github.com> | 2025-06-05 14:21:09 +0000 |
| commit | 73fcc2275c1a0bccb9e849d352e2bbd637f141e6 (patch) | |
| tree | a3719f7afc5b9004af683b540ddcce2cdf7911c2 /test | |
| parent | 6f05ce41a5cf9edd5b8e3a734bcf2eb89b53a44a (diff) | |
| download | mullvadvpn-73fcc2275c1a0bccb9e849d352e2bbd637f141e6.tar.xz mullvadvpn-73fcc2275c1a0bccb9e849d352e2bbd637f141e6.zip | |
Fix typos
Diffstat (limited to 'test')
| -rw-r--r-- | test/test-manager/src/tests/config.rs | 2 | ||||
| -rw-r--r-- | test/test-manager/src/tests/install.rs | 2 | ||||
| -rw-r--r-- | test/test-manager/src/tests/mod.rs | 2 | ||||
| -rw-r--r-- | test/test-runner/src/sys.rs | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/test/test-manager/src/tests/config.rs b/test/test-manager/src/tests/config.rs index b7b7b9f207..5e88d8a183 100644 --- a/test/test-manager/src/tests/config.rs +++ b/test/test-manager/src/tests/config.rs @@ -36,7 +36,7 @@ pub struct TestConfig { pub host_bridge_name: String, pub host_bridge_ip: Ipv4Addr, pub os: Os, - /// The OpenVPN CA certificate to use with the the installed Mullvad App. + /// The OpenVPN CA certificate to use with the installed Mullvad App. pub openvpn_certificate: OpenVPNCertificate, } diff --git a/test/test-manager/src/tests/install.rs b/test/test-manager/src/tests/install.rs index b2620842c3..0639694986 100644 --- a/test/test-manager/src/tests/install.rs +++ b/test/test-manager/src/tests/install.rs @@ -354,7 +354,7 @@ pub async fn test_installation_idempotency( tokio::time::sleep(delay).await; } } - // Make sure that no network leak occured during any installation process. + // Make sure that no network leak occurred during any installation process. let guest_ip = pinger.guest_ip; let monitor_result = pinger.stop().await.unwrap(); assert_eq!( diff --git a/test/test-manager/src/tests/mod.rs b/test/test-manager/src/tests/mod.rs index 66635a10c1..6d39c94e51 100644 --- a/test/test-manager/src/tests/mod.rs +++ b/test/test-manager/src/tests/mod.rs @@ -60,7 +60,7 @@ pub enum Error { #[error("The daemon returned an error: {0}")] Daemon(String), - #[error("The daemon ended up in the the wrong tunnel-state: {0:?}")] + #[error("The daemon ended up in the wrong tunnel-state: {0:?}")] UnexpectedTunnelState(Box<mullvad_types::states::TunnelState>), #[error("The daemon ended up in the error state: {0:?}")] diff --git a/test/test-runner/src/sys.rs b/test/test-runner/src/sys.rs index 56edcc75d3..5f461f9013 100644 --- a/test/test-runner/src/sys.rs +++ b/test/test-runner/src/sys.rs @@ -410,7 +410,7 @@ impl EnvVar { let pre = input.next().ok_or(error)?; match pre { "Environment" => { - // Proccess the input just a bit more - remove the leading and trailing quote ("). + // Process the input just a bit more - remove the leading and trailing quote ("). let var = input .next() .ok_or(error)? |
