diff --git a/profiling/src/collections/string_table/mod.rs b/profiling/src/collections/string_table/mod.rs index 5b1780634..1a1e34e4b 100644 --- a/profiling/src/collections/string_table/mod.rs +++ b/profiling/src/collections/string_table/mod.rs @@ -238,9 +238,8 @@ mod tests { /// as well as functional correctness (the table should behave like an /// ordered set). /// Limitations: - /// - The crate used here to generate Strings internally has a default range for the length of a string, (0..=64) - /// We should experiment with longer strings to see what happens. - /// https://github.com/camshaft/bolero/blob/f401669697ffcbe7f34cbfd09fd57b93d5df734c/lib/bolero-generator/src/alloc/mod.rs#L17 + /// - The crate used here to generate Strings internally has a default range for the length of + /// a string, (0..=64) We should experiment with longer strings to see what happens. https://github.com/camshaft/bolero/blob/f401669697ffcbe7f34cbfd09fd57b93d5df734c/lib/bolero-generator/src/alloc/mod.rs#L17 /// - Since iterating is destructive, can only check the string values once. /// `cargo +nightly bolero test collections::string_table::tests::fuzz_string_table -T 1min` #[test]