Merge pull request #2434 from TheBlueMatt/2023-07-116-bindings-part-2
[rust-lightning] / lightning / src / util / chacha20poly1305rfc.rs
index 552226ca3e64121569cd2ff65589152255db9c05..a5bec2c82b8cf00da2a597d3c68026aa7e87152f 100644 (file)
@@ -341,9 +341,9 @@ mod tests {
                field3: Vec<u8>,
        }
        impl_writeable_tlv_based!(TestWriteable, {
-               (1, field1, vec_type),
-               (2, field2, vec_type),
-               (3, field3, vec_type),
+               (1, field1, required_vec),
+               (2, field2, required_vec),
+               (3, field3, required_vec),
        });
 
        #[test]
@@ -411,7 +411,7 @@ mod tests {
        #[test]
        fn chacha_stream_adapters_ser_macros() {
                // Test that our stream adapters work as expected with the TLV macros.
-               // This also serves to test the `option: $trait` variant of the `decode_tlv` ser macro.
+               // This also serves to test the `option: $trait` variant of the `_decode_tlv` ser macro.
                do_chacha_stream_adapters_ser_macros().unwrap()
        }
 }