From 9a5fb90f18e90dbecf3a33337bbda36403b2256d Mon Sep 17 00:00:00 2001 From: Kevin Van Brunt Date: Thu, 2 Aug 2018 23:49:08 -0400 Subject: Updated docs and unit tests --- tests/test_completion.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests') diff --git a/tests/test_completion.py b/tests/test_completion.py index d50ad039..00a120cc 100644 --- a/tests/test_completion.py +++ b/tests/test_completion.py @@ -252,7 +252,7 @@ def test_path_completion_multiple(cmd2_app, request): endidx = len(line) begidx = endidx - len(text) - matches = sorted(cmd2_app.path_complete(text, line, begidx, endidx)) + matches = cmd2_app.path_complete(text, line, begidx, endidx) expected = [text + 'cript.py', text + 'cript.txt', text + 'cripts' + os.path.sep] assert matches == expected -- cgit v1.2.1