From 0dfb1adace4e441e0e809e88d47c85344ba45f22 Mon Sep 17 00:00:00 2001 From: Kelly Sovacool Date: Tue, 10 Sep 2024 15:22:21 -0400 Subject: [PATCH] test: assert concat_newline() returns empty string --- tests/test_shell.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/test_shell.py b/tests/test_shell.py index d29b9d3..22bb883 100644 --- a/tests/test_shell.py +++ b/tests/test_shell.py @@ -14,5 +14,6 @@ def test_concat_newline(): [ concat_newline("hello", "world") == "hello\nworld", concat_newline("goodbye", "") == "goodbye", + concat_newline() == "", ] )