Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix json formatting test
Browse files Browse the repository at this point in the history
yoshuawuyts committed Dec 4, 2024

Verified

This commit was signed with the committer’s verified signature.
1 parent 0c18539 commit 7f932c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/wasm-metadata/src/oci_annotations/author.rs
Original file line number Diff line number Diff line change
@@ -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);
}
}

0 comments on commit 7f932c5

Please sign in to comment.