From 39c3b15e024f01cc7901ef6971e183a0b83a6c99 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Mon, 23 Mar 2015 17:55:38 -0700 Subject: [PATCH] unused imports. --- tests/integration/test_requests.py | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/tests/integration/test_requests.py b/tests/integration/test_requests.py index 67c4b32..30cf774 100644 --- a/tests/integration/test_requests.py +++ b/tests/integration/test_requests.py @@ -1,18 +1,17 @@ +# -*- coding: utf-8 -*- '''Test requests' interaction with vcr''' -# coding=utf-8 - import pytest import vcr from assertions import assert_cassette_empty, assert_is_json + + requests = pytest.importorskip("requests") @pytest.fixture(params=["https", "http"]) def scheme(request): - """ - Fixture that returns both http and https - """ + '''Fixture that returns both http and https.''' return request.param