Skip to content

Commit

Permalink
Merge pull request #202 from Shopify/pz-fix-minitest-compat
Browse files Browse the repository at this point in the history
Rename MiniTest to Minitest
  • Loading branch information
peterzhu2118 authored Aug 4, 2023
2 parents 6f5bf77 + f746ddd commit 54ff9d7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/unit/block_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

require "test_helper"

class BlockTest < MiniTest::Test
class BlockTest < Minitest::Test
def test_no_allocation_of_trimmed_strings
template = Liquid::Template.parse("{{ a -}} {{- b }}")
assert_equal(2, template.root.nodelist.size)
Expand Down
2 changes: 1 addition & 1 deletion test/unit/expression_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

require "test_helper"

class ExpressionTest < MiniTest::Test
class ExpressionTest < Minitest::Test
def test_constant_literals
assert_equal(true, Liquid::C::Expression.strict_parse("true"))
assert_equal(false, Liquid::C::Expression.strict_parse("false"))
Expand Down

0 comments on commit 54ff9d7

Please sign in to comment.