From 381b4f526801a032b0f87ae488d49d846e12a8a8 Mon Sep 17 00:00:00 2001 From: Michael Richardson Date: Tue, 31 Aug 2010 19:42:13 -0400 Subject: [PATCH] adjusted test case to have third argument --- test/inc_tag_test.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/inc_tag_test.rb b/test/inc_tag_test.rb index cb4daa7..1c93f74 100644 --- a/test/inc_tag_test.rb +++ b/test/inc_tag_test.rb @@ -5,12 +5,12 @@ class IncTagTest < Test::Unit::TestCase include Liquid def test_inc - assert_template_result('0','{%inc port %}') - assert_template_result('0 1','{%inc port %} {%inc port%}') + assert_template_result('0','{%inc port %}', {}) + assert_template_result('0 1','{%inc port %} {%inc port%}', {}) assert_template_result('0 0 1 2 1', '{%inc port %} {%inc starboard%} ' + '{%inc port %} {%inc port%} ' + - '{%inc starboard %}') + '{%inc starboard %}', {}) end end