Skip to content

Commit e515bca

Browse files
committed
Fix None config test
1 parent 5a9cb2b commit e515bca

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/test_config.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,8 @@ def test_cli_remove_int(tljh_dir):
220220
("x", "x"),
221221
("1x", "1x"),
222222
("1.2x", "1.2x"),
223-
(None, None),
223+
("None", None),
224+
("none", None),
224225
("", ""),
225226
],
226227
)

0 commit comments

Comments
 (0)