remove extra format

This commit is contained in:
yggverse 2025-02-24 03:05:13 +02:00
parent e1553f6d6f
commit 160ef13ba6
25 changed files with 67 additions and 67 deletions

View file

@ -52,7 +52,7 @@ impl NotValid {
#[test]
fn test() {
let request = format!("62 message\r\n");
let request = "62 message\r\n";
let source = NotValid::from_bytes(request.as_bytes()).unwrap();
assert_eq!(source.message, Some("message".to_string()));