1
0
mirror of https://github.com/kevin1024/vcrpy.git synced 2025-12-10 17:45:35 +00:00

Spelling fixes

This commit is contained in:
Ville Skyttä
2021-08-16 06:56:36 +03:00
parent d4927627c3
commit 678d56f608
6 changed files with 24 additions and 24 deletions

View File

@@ -6,7 +6,7 @@ from vcr.cassette import Cassette
class TestVCRConnection:
def test_setting_of_attributes_get_propogated_to_real_connection(self):
def test_setting_of_attributes_get_propagated_to_real_connection(self):
vcr_connection = VCRHTTPSConnection("www.examplehost.com")
vcr_connection.ssl_version = "example_ssl_version"
assert vcr_connection.real_connection.ssl_version == "example_ssl_version"