mirror of
https://github.com/nushell/nushell.git
synced 2025-06-30 14:40:06 +02:00
Clippy in tests (#10394)
Running `cargo clippy --workspace --tests` We should move that to CI as well
This commit is contained in:
committed by
GitHub
parent
a9a82de5c4
commit
19d732f313
@ -215,9 +215,7 @@ mod regex {
|
||||
#[test]
|
||||
fn parse_handles_external_stream_chunking() {
|
||||
Playground::setup("parse_test_streaming_1", |dirs, sandbox| {
|
||||
let data: String = std::iter::repeat("abcdefghijklmnopqrstuvwxyz")
|
||||
.take(1000)
|
||||
.collect();
|
||||
let data: String = "abcdefghijklmnopqrstuvwxyz".repeat(1000);
|
||||
sandbox.with_files(vec![Stub::FileWithContent("data.txt", &data)]);
|
||||
|
||||
let actual = nu!(
|
||||
|
Reference in New Issue
Block a user