From 98eb89855992f7d8c25053baa68316115684ce4d Mon Sep 17 00:00:00 2001 From: Adamantios Date: Tue, 7 Jan 2025 20:18:17 +0200 Subject: [PATCH] chore: update version in `test_click_version` --- tests/test_test_tools/test_click_testing.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_test_tools/test_click_testing.py b/tests/test_test_tools/test_click_testing.py index fb7c1594a2..729902bfbe 100644 --- a/tests/test_test_tools/test_click_testing.py +++ b/tests/test_test_tools/test_click_testing.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # ------------------------------------------------------------------------------ # -# Copyright 2022-2024 Valory AG +# Copyright 2022-2025 Valory AG # Copyright 2018-2020 Fetch.AI Limited # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -105,7 +105,7 @@ def test_click_version(): When this tests fails you need to ensure that the current versions implementation of the click.testing.CliRunner remains compatible with our monkey-patched version """ - assert click.__version__ == "8.1.7", message + assert click.__version__ == "8.1.8", message @pytest.mark.parametrize("mix_stderr", [True, False])