types are converting right

This commit is contained in:
Chris Cochrun 2024-12-05 22:38:08 -06:00
parent fa078e8d3f
commit f0dfa0c238
3 changed files with 2 additions and 3 deletions

View file

@ -205,7 +205,6 @@ mod test {
#[test]
fn test_conversions() {
let value = Value::Symbol(Symbol("c1".to_owned()));
dbg!(&value);
let string = String::from("c1");
let convert = String::from(value);
assert_eq!(string, convert);