From 7fc2091a2dca78032f52fd2eb8275d79ed4988b9 Mon Sep 17 00:00:00 2001 From: Anthony Ross Date: Mon, 5 Sep 2022 10:05:14 -0700 Subject: [PATCH] Update reference I updated this test to reflect a more accurate version of lyrics used to demonstrate the ability to embed multiple variables within a liquid template. The origin of these lyrics most think are from [Mr. Slim](https://www.youtube.com/watch?v=FMrIy9zm7QY&t) but those were in fact sampled from the [Vinyl Dogs](https://www.youtube.com/watch?v=cx_C2Z8uXck). --- test/unit/block_unit_test.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unit/block_unit_test.rb b/test/unit/block_unit_test.rb index 42093ef18..510e9cb9b 100644 --- a/test/unit/block_unit_test.rb +++ b/test/unit/block_unit_test.rb @@ -33,7 +33,7 @@ def test_variable_middle end def test_variable_many_embedded_fragments - template = Liquid::Template.parse(" {{funk}} {{so}} {{brother}} ") + template = Liquid::Template.parse(" {{funk}} {{soul}} {{brother}} ") assert_equal(7, template.root.nodelist.size) assert_equal([String, Variable, String, Variable, String, Variable, String], block_types(template.root.nodelist))