Removing extra prints

This commit is contained in:
Ian Roddis
2022-01-07 16:14:39 -04:00
parent 6ed15b17b2
commit 58604d98cd
2 changed files with 0 additions and 2 deletions

View File

@@ -123,7 +123,6 @@ TEST_CASE("rest_endpoint", "[server_basic]")
for (auto i = 0; i < 10; ++i) {
auto response =
HTTP_REQUEST(baseURL + "/v1/dagrun/" + std::to_string(runID));
std::cout << response.body << std::endl;
REQUIRE(response.code == HTTPCode::Ok);
rj::Document doc;
daggy::checkRJParse(doc.Parse(response.body.c_str()));