summaryrefslogtreecommitdiffhomepage
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/test-manager/src/tests/config.rs2
-rw-r--r--test/test-manager/src/tests/install.rs2
-rw-r--r--test/test-manager/src/tests/mod.rs2
-rw-r--r--test/test-runner/src/sys.rs2
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)?