Skip to content

Commit

Permalink
Use capture_requests arg in MyContentServer
Browse files Browse the repository at this point in the history
  • Loading branch information
zstyblik committed Jul 2, 2024
1 parent e20f948 commit 672cdda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class MyContentServer(ContentServer):
def __init__(self, capture_requests=False, *args, **kwargs):
"""Init."""
self.captured_requests = []
self.capture_requests = False
self.capture_requests = capture_requests
super(MyContentServer, self).__init__(*args, **kwargs)

def __call__(self, environ, start_response):
Expand Down

0 comments on commit 672cdda

Please sign in to comment.