From 3acbbcf2e4551a67ab373a55a4027b1a14e05db0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Franz=20Kir=C3=A1ly?= Date: Wed, 25 Sep 2024 08:24:27 +0100 Subject: [PATCH] Update test_show_versions.py --- pytorch_forecasting/utils/_maint/tests/test_show_versions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pytorch_forecasting/utils/_maint/tests/test_show_versions.py b/pytorch_forecasting/utils/_maint/tests/test_show_versions.py index df0bb68b..47b89325 100644 --- a/pytorch_forecasting/utils/_maint/tests/test_show_versions.py +++ b/pytorch_forecasting/utils/_maint/tests/test_show_versions.py @@ -21,7 +21,7 @@ def test_deps_info(): """Test that _get_deps_info returns package/version dict as per contract.""" deps_info = _get_deps_info() assert isinstance(deps_info, dict) - assert set(deps_info.keys()) == {"sktime"} + assert set(deps_info.keys()) == {"pytorch-forecasting"} deps_info_default = _get_deps_info(DEFAULT_DEPS_TO_SHOW) assert isinstance(deps_info_default, dict)