From e515bcad264f321326552705d592ca7fbaad0dfa Mon Sep 17 00:00:00 2001 From: Jordan Bradford <36420801+jrdnbradford@users.noreply.github.com> Date: Thu, 14 Nov 2024 22:56:43 -0500 Subject: [PATCH] Fix `None` config test --- tests/test_config.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/test_config.py b/tests/test_config.py index 2d6ded43..88a752ce 100644 --- a/tests/test_config.py +++ b/tests/test_config.py @@ -220,7 +220,8 @@ def test_cli_remove_int(tljh_dir): ("x", "x"), ("1x", "1x"), ("1.2x", "1.2x"), - (None, None), + ("None", None), + ("none", None), ("", ""), ], )