Merge "Remove a print statement from tests"

This commit is contained in:
Jenkins 2016-01-28 02:37:15 +00:00 committed by Gerrit Code Review
commit 48a269e37b

View File

@ -13,7 +13,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
from __future__ import print_function
import mock
import unittest
@ -165,7 +164,6 @@ class TestContainerController(TestRingBase):
self.app._error_limiting = {}
req = Request.blank('/v1/a/c', method=method)
with mocked_http_conn(*statuses) as fake_conn:
print('a' * 50)
resp = req.get_response(self.app)
self.assertEqual(resp.status_int, expected)
for req in fake_conn.requests: