From 8466be8728d93ef36b070535fad644cd129ba345 Mon Sep 17 00:00:00 2001 From: Ashley Sommer Date: Sun, 4 Nov 2018 15:27:25 +1000 Subject: [PATCH] Fix type pikcle->pickle in multiprocessing test --- tests/test_multiprocessing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_multiprocessing.py b/tests/test_multiprocessing.py index d054d42f..ac45ad61 100644 --- a/tests/test_multiprocessing.py +++ b/tests/test_multiprocessing.py @@ -69,7 +69,7 @@ def test_pickle_app(app, protocol): @pytest.mark.parametrize('protocol', [3, 4]) -def test_pikcle_app_with_bp(app, protocol): +def test_pickle_app_with_bp(app, protocol): from sanic import Blueprint bp = Blueprint('test_text') bp.route('/')(handler)