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

Fix/ignore some flake errors

This commit is contained in:
Jayson Reis
2016-01-20 12:28:46 +01:00
parent 7fdfce65ee
commit 632af2e41a
4 changed files with 10 additions and 11 deletions

View File

@@ -233,7 +233,8 @@ def test_cassette_use_called_without_path_uses_function_to_generate_path():
def test_path_transformer_with_function_path():
path_transformer = lambda path: os.path.join('a', path)
def path_transformer(path):
return os.path.join('a', path)
@Cassette.use(inject=True, path_transformer=path_transformer)
def function_name(cassette):