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).
This commit is contained in:
Anthony Ross 2022-09-05 10:05:14 -07:00 committed by GitHub
parent 2515f3be09
commit 7fc2091a2d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -33,7 +33,7 @@ class BlockUnitTest < Minitest::Test
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))