diff --git a/minisql/src/type_system.rs b/minisql/src/type_system.rs index 8dea3d0..0ed03f4 100644 --- a/minisql/src/type_system.rs +++ b/minisql/src/type_system.rs @@ -531,12 +531,9 @@ mod tests { fn test_value_stringification() { let pairs = vec![ (Value::Number(1.0), "Number(1)"), - ( - Value::String("hello".to_string()), - "Indexable(String(hello))", - ), - (Value::Int(123), "Indexable(Int(123))"), - (Value::Uuid(123), "Indexable(Uuid(123))"), + (Value::String("hello".to_string()), "String(hello)"), + (Value::Int(123), "Int(123)"), + (Value::Uuid(123), "Uuid(123)"), ]; for (value, string) in pairs {