From 0d670bbcc7c114795305ee7abecb2fb05b8e73a7 Mon Sep 17 00:00:00 2001 From: Dean Troyer Date: Mon, 13 Mar 2017 10:32:44 -0500 Subject: [PATCH] Fix broken test with cmd2 0.7.0 Co-author: todd.leonhardt@gmail.com Closes-Bug: #1672108 Change-Id: I4bb02749a8fafccaff4ef7ce94ff0c4910fb67e6 --- cliff/tests/test_interactive.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cliff/tests/test_interactive.py b/cliff/tests/test_interactive.py index 7d9667e..f8db6c3 100644 --- a/cliff/tests/test_interactive.py +++ b/cliff/tests/test_interactive.py @@ -44,8 +44,8 @@ def test_no_completenames(): def test_both_completenames(): - # cmd2.Cmd define do_hi and do_history methods - _test_completenames(['hi', 'history', 'hips', 'hippo'], 'hi') + # cmd2.Cmd defines do_history method + _test_completenames(['history', 'hips', 'hippo'], 'hi') def _test_completedefault(expecteds, line, begidx):