From 2c0a26c2f541fdd74d7af2d814c91d799121f761 Mon Sep 17 00:00:00 2001 From: murphy Date: Tue, 17 Oct 2006 11:30:01 +0000 Subject: Fixed test: sort plugin lists. --- test/functional/basic.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/functional/basic.rb b/test/functional/basic.rb index 01fcd4f..d793f5f 100755 --- a/test/functional/basic.rb +++ b/test/functional/basic.rb @@ -32,13 +32,13 @@ class Basic < Test::Unit::TestCase count debug div html null page span statistic text tokens xml yaml ) def test_list_of_encoders - assert_equal(ENCODERS_LIST, CodeRay::Encoders.list) + assert_equal(ENCODERS_LIST, CodeRay::Encoders.list.sort) end SCANNERS_LIST = %w( c delphi html nitro_xhtml plaintext rhtml ruby xml ) def test_list_of_encoders - assert_equal(SCANNERS_LIST, CodeRay::Scanners.list) + assert_equal(SCANNERS_LIST, CodeRay::Scanners.list.sort) end end \ No newline at end of file -- cgit v1.2.1