Skip to content

Commit

Permalink
RUBY-409 fixed test for ordered hash to actually used Array instead o…
Browse files Browse the repository at this point in the history
…f hash
  • Loading branch information
TylerBrock committed Feb 13, 2012
1 parent 4a92a1e commit 21ad1e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/bson/ordered_hash_test.rb
Expand Up @@ -15,7 +15,7 @@ def test_initialize
a['x'] = 1
a['y'] = 2

b = BSON::OrderedHash['x' => 1, 'y' => 2]
b = BSON::OrderedHash['x', 1, 'y', 2]
assert_equal a, b
end

Expand Down

0 comments on commit 21ad1e9

Please sign in to comment.