Skip to content

Commit

Permalink
fixup! fixup! WIP Add location overrides per test to test-manager config
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkusPettersson98 committed Nov 22, 2024
1 parent 11f4cce commit ff49e7e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions test/test-manager/src/tests/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -192,12 +192,14 @@ pub async fn prepare_custom_lists(
.await?;

let mut custom_list = find_custom_list(mullvad_client, test.name).await?;
log::info!("Creating custom list {}", custom_list.name);

assert_eq!(id, custom_list.id);
for location in locations {
custom_list.locations.insert(location);
}
mullvad_client.update_custom_list(custom_list).await?;
log::info!("Added custom list");

Ok(())
}
Expand Down

0 comments on commit ff49e7e

Please sign in to comment.