From 5f02465c47a3a24cd3e9c9dbcb2152a66a6576e9 Mon Sep 17 00:00:00 2001 From: Joe J Collins Date: Tue, 16 Jan 2024 13:55:58 +0000 Subject: [PATCH] Note --- tests/unit/pkg_shared/settings_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/pkg_shared/settings_test.py b/tests/unit/pkg_shared/settings_test.py index 0a333c6..c67803f 100644 --- a/tests/unit/pkg_shared/settings_test.py +++ b/tests/unit/pkg_shared/settings_test.py @@ -11,7 +11,7 @@ def mock_file_open( file: str, mode: str, encoding: str | None = None # pylint: disable=unused-argument ) -> MockFile: - """Return a mock file with some dummy content.""" + """Mimics the file open but returns a mock file with some dummy content.""" return MockFile('{"redis_host": "my-dev-box.somewhere.com", "redis_db": 3}')