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

Fixed available matchers declaration

This commit is contained in:
Max Shytikov
2014-04-11 01:33:30 +02:00
parent 2fa1aaa1f7
commit f9a64e1609

View File

@@ -34,9 +34,9 @@ class VCR(object):
'url': matchers.uri, # matcher for backwards compatibility
'scheme': matchers.scheme,
'host': matchers.host,
'port': matchers.method,
'port': matchers.port,
'path': matchers.path,
'query': matchers.path,
'query': matchers.query,
'headers': matchers.headers,
'body': matchers.body,
}