Update crates/nu_plugin_query/src/query_web.rs

Co-authored-by: Stefan Holderbach <sholderbach@users.noreply.github.com>
This commit is contained in:
Embers-of-the-Fire 2024-08-01 18:50:09 +08:00 committed by GitHub
parent 9c8bfa650d
commit ff588f2531
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -454,7 +454,7 @@ mod tests {
fn null_spanned<T: ToOwned + ?Sized>(input: &T) -> Spanned<T::Owned> {
Spanned {
item: input.to_owned(),
span: Span { start: 0, end: 0 },
span: Span::unknown(),
}
}