You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've discovered your library. Thank you for putting it together.
While looking through test cases, I've noticed that assert_eq! has mismatched types.
For example
comparing to "child" assuming that it is String whereas t.name is a String, but "child" is of &str type.
May I suggest altering assert_eq! to the following
Hello,
I've discovered your library. Thank you for putting it together.
While looking through test cases, I've noticed that assert_eq! has mismatched types.
For example
comparing to
"child"
assuming that it is String whereas t.name is a String, but"child"
is of&str
type.May I suggest altering assert_eq! to the following
Assuming that if that it is your intention to compare
t.name
to"child"
asString
type.The text was updated successfully, but these errors were encountered: