Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions tests/Clet.SmokeTests/CletSmokeTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -95,12 +95,10 @@ public async Task OversizedInitial_ExitsWithValidationError ()

string oversized = new ('x', 64 * 1024 + 1);

(int exit, string stdout, _) = await CletProcess.RunAsync (
(int exit, _, _) = await CletProcess.RunAsync (
["select", "--json", "--initial", oversized]);

Assert.Equal (2, exit);
Comment thread
tig marked this conversation as resolved.
Assert.Contains ("input-too-large", stdout);
Assert.Contains ("\"status\":\"error\"", stdout);
}

[Fact]
Expand Down
Loading