Navigation Menu

Skip to content

Commit

Permalink
Fixed failed test due to the change of hash algorithm in Ruby 1.8.7
Browse files Browse the repository at this point in the history
  • Loading branch information
ngoto committed Aug 31, 2008
1 parent 02cc069 commit e86f8d7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/unit/bio/db/test_prosite.rb
Expand Up @@ -1233,7 +1233,7 @@ def test_list_truepositive
"P11616",
"P23275",
"Q01338"]
assert_equal(data, @obj.list_truepositive)
assert_equal(data.sort, @obj.list_truepositive.sort)
end

def test_list_falsenegative
Expand Down Expand Up @@ -1301,7 +1301,7 @@ def test_list_falsenegative
"P77933",
"P34529",
"Q00126"]
assert_equal(data, @obj.list_falsenegative)
assert_equal(data.sort, @obj.list_falsenegative.sort)
end

def test_list_falsepositive
Expand Down Expand Up @@ -1353,7 +1353,7 @@ def test_list_falsepositive
"Q95137",
"Q62953",
"Q95195"]
assert_equal(data, @obj.list_falsepositive)
assert_equal(data.sort, @obj.list_falsepositive.sort)
end

def test_list_potentialhit
Expand Down Expand Up @@ -1405,7 +1405,7 @@ def test_list_potentialhit
"Q95137",
"Q62953",
"Q95195"]
assert_equal(data, @obj.list_potentialhit)
assert_equal(data.sort, @obj.list_potentialhit.sort)
end

def test_list_unknown
Expand Down

0 comments on commit e86f8d7

Please sign in to comment.