From 425bef9bb435e9740d0a6072620b01e69c0dd928 Mon Sep 17 00:00:00 2001 From: Kai Welke Date: Thu, 30 Nov 2023 15:56:23 +0100 Subject: [PATCH] fix: test --- tests/test_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_config.py b/tests/test_config.py index 757fd78..af9696d 100644 --- a/tests/test_config.py +++ b/tests/test_config.py @@ -11,7 +11,7 @@ def test_returns_version() -> None: """It returns the correct version.""" - assert sphinx_docsearch.__version__ == "0.0.3" + assert sphinx_docsearch.__version__ == "0.0.4" @pytest.mark.sphinx("html", confoverrides={"extensions": ["sphinx_docsearch"]})