From b149580b8cfc857975e9f4c20a42db5f72cf5441 Mon Sep 17 00:00:00 2001 From: Mateusz Bysiek Date: Sun, 3 Sep 2023 03:12:42 +0900 Subject: [PATCH] test: convert the default unparser to string --- test/test_argument_unparser.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test/test_argument_unparser.py b/test/test_argument_unparser.py index 0ebbb48..6868d1e 100644 --- a/test/test_argument_unparser.py +++ b/test/test_argument_unparser.py @@ -124,5 +124,6 @@ def test_unparse(self): def test_unparse_nothing(self): unparser = ArgumentUnparser() + _LOG.debug('testing unparsing nothing for: %s', unparser) self.assertEqual(unparser.unparse(), '') self.assertEqual(unparser.unparse_to_list(), [])