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
Whenever a migration test fails, it gives the location tests/harness/mod.rs:141:17. This location isn't useful, as it's not where the migration test is defined. We should use std::panic::Location and #[track_caller] to emit a useful location.
Whenever a migration test fails, it gives the location
tests/harness/mod.rs:141:17. This location isn't useful, as it's not where the migration test is defined. We should usestd::panic::Locationand#[track_caller]to emit a useful location.