From ff3f6c8d081c19eeecda844f61fe436832828931 Mon Sep 17 00:00:00 2001 From: Tomasz Setkowski Date: Fri, 30 Nov 2018 19:18:19 +0000 Subject: [PATCH] fix tests for non-interactive run --- test/integration/end_user/bats/03_noide.bats | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/end_user/bats/03_noide.bats b/test/integration/end_user/bats/03_noide.bats index 30e65848..6671a2e8 100644 --- a/test/integration/end_user/bats/03_noide.bats +++ b/test/integration/end_user/bats/03_noide.bats @@ -2,7 +2,7 @@ load '/opt/bats-support/load.bash' load '/opt/bats-assert/load.bash' @test "Without IDE: gocd-yaml returns OK when file is valid" { - run /bin/bash -c 'source Idefile.to_be_tested && docker run -ti --rm --volume $IDE_WORK:/ide/work $IDE_DOCKER_IMAGE "cd yaml-example && gocd-yaml syntax ci.gocd.yaml"' + run /bin/bash -c 'source Idefile.to_be_tested && docker run --rm --volume $IDE_WORK:/ide/work $IDE_DOCKER_IMAGE "cd yaml-example && gocd-yaml syntax ci.gocd.yaml"' assert_output --partial "OK" assert_equal "$status" 0 }