diff --git a/crates/wasm-metadata/src/oci_annotations/author.rs b/crates/wasm-metadata/src/oci_annotations/author.rs index 49e64189d4..675956842c 100644 --- a/crates/wasm-metadata/src/oci_annotations/author.rs +++ b/crates/wasm-metadata/src/oci_annotations/author.rs @@ -91,6 +91,6 @@ mod test { fn serialize() { let author = Author::new("Chashu Cat"); let json = serde_json::to_string(&author).unwrap(); - assert_eq!("Chashu Cat", json); + assert_eq!(r#""Chashu Cat""#, json); } }