mirror of
https://github.com/nushell/nushell.git
synced 2025-08-09 11:45:50 +02:00
Rust 1.85, edition=2024 (#15741)
This commit is contained in:
@ -76,9 +76,11 @@ fn http_patch_failed_due_to_missing_body() {
|
||||
.as_str()
|
||||
));
|
||||
|
||||
assert!(actual
|
||||
.err
|
||||
.contains("Data must be provided either through pipeline or positional argument"))
|
||||
assert!(
|
||||
actual
|
||||
.err
|
||||
.contains("Data must be provided either through pipeline or positional argument")
|
||||
)
|
||||
}
|
||||
|
||||
#[test]
|
||||
|
@ -75,9 +75,11 @@ fn http_post_failed_due_to_missing_body() {
|
||||
.as_str()
|
||||
));
|
||||
|
||||
assert!(actual
|
||||
.err
|
||||
.contains("Data must be provided either through pipeline or positional argument"))
|
||||
assert!(
|
||||
actual
|
||||
.err
|
||||
.contains("Data must be provided either through pipeline or positional argument")
|
||||
)
|
||||
}
|
||||
|
||||
#[test]
|
||||
|
@ -76,9 +76,11 @@ fn http_put_failed_due_to_missing_body() {
|
||||
.as_str()
|
||||
));
|
||||
|
||||
assert!(actual
|
||||
.err
|
||||
.contains("Data must be provided either through pipeline or positional argument"))
|
||||
assert!(
|
||||
actual
|
||||
.err
|
||||
.contains("Data must be provided either through pipeline or positional argument")
|
||||
)
|
||||
}
|
||||
|
||||
#[test]
|
||||
|
Reference in New Issue
Block a user