diff options
author | hut <hut@lavabit.com> | 2010-02-16 02:02:18 +0100 |
---|---|---|
committer | hut <hut@lavabit.com> | 2010-02-16 02:02:18 +0100 |
commit | 0654d6d093f8e78033b9dcafcb52bbdcd92aed0c (patch) | |
tree | 08a9b1bd92b1cdebb93a81fcdad7bcad476ba116 /test | |
parent | 8f50c0045fb1f737c6ef8f99f665adac0915e3a0 (diff) | |
download | ranger-0654d6d093f8e78033b9dcafcb52bbdcd92aed0c.tar.gz |
test/tc_commandlist: removed obsolete test
Diffstat (limited to 'test')
-rw-r--r-- | test/tc_commandlist.py | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/test/tc_commandlist.py b/test/tc_commandlist.py index f00805e8..12f78b14 100644 --- a/test/tc_commandlist.py +++ b/test/tc_commandlist.py @@ -43,12 +43,14 @@ class Test(TestCase): self.assertEqual(dmy, cl['aaa']) self.assertEqual(fnc, cl['aaaa'].execute) - hint_text = 'some tip blablablba' - cl.hint(hint_text, 'aa') - cl.rebuild_paths() + # Hints work different now. Since a rework of this system + # is planned anyway, there is no need to fix the test. + # hint_text = 'some tip blablablba' + # cl.hint(hint_text, 'aa') + # cl.rebuild_paths() self.assertEqual(dmy, cl['a']) - self.assertEqual(hint_text, cl['aa'].text) + # self.assertEqual(hint_text, cl['aa'].text) self.assertEqual(dmy, cl['aaa']) self.assertEqual(fnc, cl['aaaa'].execute) |