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
Trailing commas are an easy mistake to make, especially in a language like Rust where they are often accepted. Erroneously adding a trailing comma to assert_eq! triggers the error message "requires at least a format string argument", which is confusing and leads the user to think (incorrectly) that they need to add some kind of format string. Example.