test/functional/ft_11_recursion.rb in ruote-2.1.7 vs test/functional/ft_11_recursion.rb in ruote-2.1.8

- old
+ new

@@ -54,11 +54,11 @@ alpha = @engine.register_participant :alpha, CountingParticipant.new #noisy - assert_trace(pdef, %w[ 1 2 3 4 5 6 ]) + assert_trace(%w[ 1 2 3 4 5 6 ], pdef) #p alpha.wfids.uniq assert_equal 6, alpha.wfids.uniq.size end @@ -77,10 +77,10 @@ alpha = @engine.register_participant :alpha, CountingParticipant.new #noisy - assert_trace pdef, %w[ 1 2 3 4 5 6 ] + assert_trace %w[ 1 2 3 4 5 6 ], pdef #p alpha.wfids.uniq assert_equal 6, alpha.wfids.uniq.size end