From 6da4351531f86382c6533ec03819813c9b740793 Mon Sep 17 00:00:00 2001 From: Alex Root Junior Date: Sun, 12 Feb 2023 00:24:02 +0200 Subject: [PATCH] Update tests/test_dispatcher/test_router.py --- tests/test_dispatcher/test_router.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_dispatcher/test_router.py b/tests/test_dispatcher/test_router.py index 81161dde..3404822d 100644 --- a/tests/test_dispatcher/test_router.py +++ b/tests/test_dispatcher/test_router.py @@ -44,7 +44,7 @@ class TestRouter: def test_including_many_routers_bad_type(self): router = Router() - with pytest.raises(ValueError, match="You must provide routers"): + with pytest.raises(ValueError, match="At least one router must be provided"): router.include_routers() def test_include_router_by_string_bad_type(self):