We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cf16a91 + 01d01e5 commit 05a1b09Copy full SHA for 05a1b09
itest/rust/src/builtin_tests/containers/packed_array_test.rs
@@ -38,7 +38,7 @@ fn packed_array_from() {
38
#[itest]
39
fn packed_array_to_vec() {
40
let array = PackedByteArray::new();
41
- assert_eq!(array.to_vec(), vec![]);
+ assert_eq!(array.to_vec(), Vec::<u8>::new());
42
let array = PackedByteArray::from(&[1, 2]);
43
assert_eq!(array.to_vec(), vec![1, 2]);
44
}
itest/rust/src/builtin_tests/mod.rs
@@ -20,6 +20,7 @@ mod containers {
20
mod array_test;
21
mod callable_test;
22
mod dictionary_test;
23
+ mod packed_array_test;
24
mod rid_test;
25
mod signal_test;
26
mod variant_test;
0 commit comments