build: bump rust toolchain to 1.74.0 (#322)

This commit is contained in:
Benoît Cortier 2023-12-05 19:55:51 -05:00 committed by GitHub
parent 2384a70916
commit 4506e1b185
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
22 changed files with 50 additions and 50 deletions

View file

@ -41,7 +41,7 @@ fn test_cf_html_to_text() {
assert!(actual.ends_with("</sup>"));
// Validate roundtrip
let cf_html = plain_html_to_cf_html(&actual);
let cf_html = plain_html_to_cf_html(actual);
let roundtrip_html_text = cf_html_to_plain_html(cf_html.as_bytes()).unwrap();
assert_eq!(actual, roundtrip_html_text);