We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fffb0dc commit c056127Copy full SHA for c056127
test/test-manager/src/tests/mod.rs
@@ -185,8 +185,10 @@ pub async fn set_test_location(
185
);
186
187
// Add the custom list to the current app instance
188
+ // NOTE: This const is actually defined in, `mullvad_types::custom_list`, but we cannot import it.
189
+ const CUSTOM_LIST_NAME_MAX_SIZE: usize = 30;
190
let list_id = mullvad_client
- .create_custom_list(test.name.to_string())
191
+ .create_custom_list(test.name[..CUSTOM_LIST_NAME_MAX_SIZE].to_string())
192
.await?;
193
194
let mut custom_list = find_custom_list(mullvad_client, test.name).await?;
0 commit comments