We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9de7258 commit dd48d24Copy full SHA for dd48d24
test/test-manager/src/tests/mod.rs
@@ -94,11 +94,16 @@ pub async fn cleanup_after_test(mullvad_client: &mut MullvadProxyClient) -> anyh
94
settings_version: _, // N/A
95
} = Default::default();
96
97
- let _ = api_access_methods;
98
mullvad_client
99
.clear_custom_access_methods()
100
.await
101
.context("Could not clear custom api access methods")?;
+ for access_method in api_access_methods.iter() {
102
+ mullvad_client
103
+ .update_access_method(access_method.clone())
104
+ .await
105
+ .context("Could not reset default access method")?;
106
+ }
107
108
109
.set_relay_settings(relay_settings)
0 commit comments