From: W. Trevor King Date: Fri, 27 Aug 2010 22:39:44 +0000 (-0400) Subject: Fix 'flat filter peaks' CommandMessage declaration in test/apply_command_stack_to_pla... X-Git-Url: http://git.tremily.us/?p=hooke.git;a=commitdiff_plain;h=dabd5c6a25949ec3ef937992d232704c21b59751 Fix 'flat filter peaks' CommandMessage declaration in test/apply_command_stack_to_playlist.py --- diff --git a/test/apply_command_stack_to_playlist.py b/test/apply_command_stack_to_playlist.py index 483d032..e430f16 100644 --- a/test/apply_command_stack_to_playlist.py +++ b/test/apply_command_stack_to_playlist.py @@ -106,7 +106,8 @@ unloading curve 20071120a_i27_t33.102 Test `apply command stack to playlist` without evaluating. >>> stack = CommandStack([ -... CommandMessage('flat_filter_peaks --block retract --min_points 1'), +... CommandMessage('flat filter peaks', +... {'block':'retract', 'min points':1}), ... ]) >>> h.run_command('apply command stack to playlist', ... {'commands': stack, 'evaluate': False} @@ -126,7 +127,7 @@ engine message from apply command stack to playlist ... print c # doctest: +ELLIPSIS, +NORMALIZE_WHITESPACE, +REPORT_UDIFF ...}> - + Test `clear curve command stack`.