From 32460c255bb2d2d006a27870a34afad3ed0b4690 Mon Sep 17 00:00:00 2001 From: Martin Hanzel Date: Fri, 8 May 2015 11:48:33 -0400 Subject: [PATCH] Removed a few superfluous comments --- test/integration/filter_test.rb | 3 --- 1 file changed, 3 deletions(-) diff --git a/test/integration/filter_test.rb b/test/integration/filter_test.rb index da2593a..ba58e0f 100644 --- a/test/integration/filter_test.rb +++ b/test/integration/filter_test.rb @@ -85,7 +85,6 @@ class FiltersTest < Minitest::Test def test_sort_natural @context['words'] = ['case', 'Assert', 'Insensitive'] - # This specific syntax forces hashes to have string keys. Colons won't work. @context['hashes'] = [{ 'a' => 'A'}, { 'a' => 'b'}, { 'a' => 'C' }] @context['objects'] = [TestObject.new('A'), TestObject.new('b'), TestObject.new('C')] @@ -161,8 +160,6 @@ class FiltersInTemplate < Minitest::Test end end # FiltersTest -# Simple object that gmay be passed into a filter. -# Note to test subjects: do not smuggle test objects out of the testing area. class TestObject attr_accessor :a def initialize(a)