Tests: web/FullTest - postInvalidBodyDto on a different connection

This commit is contained in:
lganzzzo 2021-02-20 17:30:02 +02:00
parent 0b3e2a18ed
commit 2c6f64f750

View File

@ -313,7 +313,7 @@ void FullTest::onRun() {
{ // test POST with invalid dto body
auto dtoIn = app::AnotherTestDto::createShared();
dtoIn->testValue = i;
auto response = client->postInvalidBodyDto(dtoIn, connection);
auto response = client->postInvalidBodyDto(dtoIn/*, connection */);
OATPP_ASSERT(response->getStatusCode() == 400);
}