From ffc6f8f6b071a73fca8ab5128e1bcd0ba4a0a3ff Mon Sep 17 00:00:00 2001 From: georgetarazevich Date: Thu, 14 Dec 2023 19:04:36 +0300 Subject: [PATCH] Update debug.bats --- tests/Options/config/validator/debug.bats | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/Options/config/validator/debug.bats b/tests/Options/config/validator/debug.bats index 58a514ae..3364fbc6 100644 --- a/tests/Options/config/validator/debug.bats +++ b/tests/Options/config/validator/debug.bats @@ -20,11 +20,12 @@ teardown() { @test "--debug, Outputs all processed file names, debug=true" { - run curl -F "file=@$PROJECT_ROOT/Resources/a.pdf" localhost:8080/api/validate/1b -H "Accept:text/html" + run curl -F "file=@$PROJECT_ROOT/Resources/a.pdf" localhost:8080/api/validate/3a -H "Accept:text/html" [ "$status" -eq 0 ] sleep 10 # sleep 10 sec - run docker logs $DOCKER_CONTAINER -t --since=$test_logs_starting_time + + sleep 10 # sleep 10 sec assert_output --partial "INFO: a.pdf" }