Skip to content

Commit

Permalink
fix: add missing comma in test_used_interactions
Browse files Browse the repository at this point in the history
  • Loading branch information
danielnsilva committed Jan 4, 2025
1 parent 36c7465 commit 936b846
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unit/test_cassettes.py
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ def test_used_interactions(tmpdir):
interactions = [
{"request": {"body": "", "uri": "foo1", "method": "GET", "headers": {}}, "response": "bar1"},
{"request": {"body": "", "uri": "foo2", "method": "GET", "headers": {}}, "response": "bar2"},
{"request": {"body": "", "uri": "foo3", "method": "GET", "headers": {}}, "response": "bar3"}
{"request": {"body": "", "uri": "foo3", "method": "GET", "headers": {}}, "response": "bar3"},
]
file = tmpdir.join("test_cassette.yml")
file.write(yaml.dump({"interactions": [interactions[0], interactions[1]]}))
Expand Down

0 comments on commit 936b846

Please sign in to comment.