From b047336690851cab472e3aa008eff96e51075838 Mon Sep 17 00:00:00 2001 From: Shawn Krisman Date: Thu, 30 Oct 2014 16:08:17 -0700 Subject: [PATCH] test_boto_stubs passes again. --- tests/integration/test_boto.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/test_boto.py b/tests/integration/test_boto.py index ed4a007..e4261a8 100644 --- a/tests/integration/test_boto.py +++ b/tests/integration/test_boto.py @@ -14,7 +14,7 @@ def test_boto_stubs(tmpdir): from boto.https_connection import CertValidatingHTTPSConnection from vcr.stubs.boto_stubs import VCRCertValidatingHTTPSConnection # Prove that the class was patched by the stub and that we can instantiate it. - assert CertValidatingHTTPSConnection is VCRCertValidatingHTTPSConnection + assert issubclass(CertValidatingHTTPSConnection, VCRCertValidatingHTTPSConnection) CertValidatingHTTPSConnection('hostname.does.not.matter') def test_boto_without_vcr():