Update live flow option

This commit is contained in:
Wes
2023-12-05 19:55:23 +00:00
parent d871b61150
commit b3e78c9cc3
4 changed files with 37 additions and 6 deletions

View File

@@ -13,7 +13,7 @@ class TestSublimePlatformMethods(unittest.TestCase):
with patch('sys.stderr', new=StringIO()) as mock_stderr:
sys.argv = ["cmd"]
sublime.main()
self.assertEqual(mock_stderr.getvalue(), "usage: cmd [-h] [-c CONFIG_FILE] artifact\ncmd: error: the following arguments are required: artifact\n")
self.assertEqual(mock_stderr.getvalue(), '''usage: cmd [-h] [-c CONFIG_FILE] artifact\ncmd: error: the following arguments are required: artifact\n''')
sysmock.assert_called_once_with(2)
def test_main_success(self):