Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
ahopkins committed Dec 21, 2021
1 parent 18401df commit 2b80ece
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sanic_testing/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from sanic_testing.manager import TestManager

__version__ = "0.7.0"
__version__ = "0.8.0"
__all__ = ("TestManager",)
2 changes: 1 addition & 1 deletion sanic_testing/testing.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def __init__(
self.port = port
self.host = host
self._do_request = _blank
app.listener("after_server_start")(self._run_request)
app.after_server_start(self._run_request)

def _run_request(self, *args, **kwargs):
return self._do_request(*args, **kwargs)
Expand Down

0 comments on commit 2b80ece

Please sign in to comment.