commit f09024dab86af57934086f6230bff3677d8882c9
Author: Moritz Onken <onken@netcubed.de>
Date:   Wed May 8 20:28:45 2013 -0400

    Hash Randomization Failures, closes #2

diff --git a/t/model/model.t b/t/model/model.t
index c2f3cf9..641c0df 100644
--- a/t/model/model.t
+++ b/t/model/model.t
@@ -36,8 +36,8 @@ my $meta = $model->meta;
 ok( $model->does('ElasticSearchX::Model::Role'), 'Does role' );
 
 is_deeply(
-    [ $meta->get_index_list ],
-    [ 'irc', 'twitter', 'twitter_v1' ],
+    [ sort $meta->get_index_list ],
+    [ sort 'irc', 'twitter', 'twitter_v1' ],
     'Has index twitter'
 );