diff options
| author | Dan Engelbrecht <[email protected]> | 2025-03-19 16:12:06 +0100 |
|---|---|---|
| committer | GitHub Enterprise <[email protected]> | 2025-03-19 16:12:06 +0100 |
| commit | 764dba27c3183122989a401824c1771249f335da (patch) | |
| tree | e46f7b464ad0d0accdda36bd915964354758358b /src/zenserver-test/zenserver-test.cpp | |
| parent | Missing import statment on dashboard's start page (#314) (diff) | |
| download | zen-764dba27c3183122989a401824c1771249f335da.tar.xz zen-764dba27c3183122989a401824c1771249f335da.zip | |
build list filters (#313)
- Feature: `zen builds list` command has new options
- `--query-path` - path to a .json (json format) or .cbo (compact binary object format) with the search query to use
- `--result-path` - path to a .json (json format) or .cbo (compact binary object format) to write output result to, if omitted json format will be output to console
Diffstat (limited to 'src/zenserver-test/zenserver-test.cpp')
| -rw-r--r-- | src/zenserver-test/zenserver-test.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/zenserver-test/zenserver-test.cpp b/src/zenserver-test/zenserver-test.cpp index 6259c0f37..027a35998 100644 --- a/src/zenserver-test/zenserver-test.cpp +++ b/src/zenserver-test/zenserver-test.cpp @@ -3017,9 +3017,9 @@ TEST_CASE("project.remote") { cpr::Response StatusResponse = Session.Get(); CHECK(IsHttpSuccessCode(StatusResponse.status_code)); - CbObject ReponseObject = + CbObject ResponseObject = LoadCompactBinaryObject(IoBuffer(IoBuffer::Wrap, StatusResponse.text.data(), StatusResponse.text.size())); - std::string_view Status = ReponseObject["Status"sv].AsString(); + std::string_view Status = ResponseObject["Status"sv].AsString(); CHECK(Status != "Aborted"sv); if (Status == "Complete"sv) { |