From 9f2ada5c38b0d228d5350bc7eadb5ac119c12105 Mon Sep 17 00:00:00 2001 From: Chris Bynum Date: Fri, 29 Jul 2016 14:28:59 -0400 Subject: [PATCH] Removed tty --- tests/base.bats | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/base.bats b/tests/base.bats index 823e9cd..5ed7294 100644 --- a/tests/base.bats +++ b/tests/base.bats @@ -1,7 +1,7 @@ #!/usr/bin/env bats @test "curl should connect to InCommon cert chain site successfully" { - run docker run -it tier/centos7base curl -o /dev/null --silent --head --write-out '%{http_code}\n' https://github.internet2.edu/ + run docker run -i tier/centos7base curl -o /dev/null --silent --head --write-out '%{http_code}\n' https://github.internet2.edu/ echo ${output} [ "$status" -eq 0 ] [[ ${output} == *"302"* || ${output} == *"200"* ]]