Skip to content

Commit c056127

Browse files
committed
Limit custom list name length
1 parent fffb0dc commit c056127

File tree

1 file changed

+3
-1
lines changed
  • test/test-manager/src/tests

1 file changed

+3
-1
lines changed

test/test-manager/src/tests/mod.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -185,8 +185,10 @@ pub async fn set_test_location(
185185
);
186186

187187
// 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;
188190
let list_id = mullvad_client
189-
.create_custom_list(test.name.to_string())
191+
.create_custom_list(test.name[..CUSTOM_LIST_NAME_MAX_SIZE].to_string())
190192
.await?;
191193

192194
let mut custom_list = find_custom_list(mullvad_client, test.name).await?;

0 commit comments

Comments
 (0)