Skip to content

Commit

Permalink
Merge branch 'kevin1024:master' into fix-installing-via-poetry
Browse files Browse the repository at this point in the history
  • Loading branch information
benwah authored Feb 28, 2024
2 parents 4e1985b + c6d8730 commit d339e4c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.1.13
rev: v0.2.2
hooks:
- id: ruff
args: ["--show-source"]
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/test_basic.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def test_basic_json_use(tmpdir, httpbin):
test_fixture = str(tmpdir.join("synopsis.json"))
with vcr.use_cassette(test_fixture, serializer="json"):
response = urlopen(httpbin.url).read()
assert b"A simple HTTP Request & Response Service." in response
assert b"HTTP Request & Response Service" in response


def test_patched_content(tmpdir, httpbin):
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/test_register_persister.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def test_load_cassette_with_custom_persister(tmpdir, httpbin):

with my_vcr.use_cassette(test_fixture, serializer="json"):
response = urlopen(httpbin.url).read()
assert b"A simple HTTP Request & Response Service." in response
assert b"HTTP Request & Response Service" in response


def test_load_cassette_persister_exception_handling(tmpdir, httpbin):
Expand Down

0 comments on commit d339e4c

Please sign in to comment.