ktosiek / pytest-vcr

Py.test integration with VCR.py
MIT License
150 stars 25 forks source link

Invalid code sample in docs #8

Closed pakal closed 6 years ago

pakal commented 6 years ago

It's a detail, but the dict literal is not correct :

@pytest.fixture
def vcr_config():
    return {
        # Replace the Authorization request header with "DUMMY" in cassettes
        filter_headers=[('authorization', 'DUMMY')],
    }
ktosiek commented 6 years ago

Oh, took me a moment to see what's wrong. Thank you!

pakal commented 6 years ago

Thanks :)