aboutsummaryrefslogtreecommitdiffstats
path: root/test/testunit/collector/test_dir.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/testunit/collector/test_dir.rb')
-rw-r--r--test/testunit/collector/test_dir.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/testunit/collector/test_dir.rb b/test/testunit/collector/test_dir.rb
index 99fb3de112..3e5546943c 100644
--- a/test/testunit/collector/test_dir.rb
+++ b/test/testunit/collector/test_dir.rb
@@ -394,7 +394,7 @@ module Test
def test_filtering
expected = TestSuite.new('.')
expected << @t1.suite
- @c.filter = proc{|t| t.method_name == 'test_1a' || t.method_name == 'test_1b'}
+ @c.filter = proc{|t| t.method_name == :test_1a || t.method_name == :test_1b}
assert_equal(expected, @c.collect)
end