fix tests

This commit is contained in:
Evan Almloff 2023-08-08 15:13:02 -07:00
parent 24c626b306
commit 3f31b9de43

View file

@ -13,7 +13,7 @@ fn app(cx: Scope) -> Element {
let mut result = String::new();
result += "#";
for c in c.iter() {
write!(string, "{c:02X?}").unwrap();
write!(result, "{c:02X?}").unwrap();
}
result
}