diff options
author | Philip Arndt <parndt@gmail.com> | 2012-02-02 23:16:28 +1300 |
---|---|---|
committer | Philip Arndt <parndt@gmail.com> | 2012-02-02 23:16:28 +1300 |
commit | e63bf074af8806ac643e14a797e6c413d6c64c40 (patch) | |
tree | e03266bbbf6c5364076a093020172571f9b8003c /spec | |
parent | 0df8829a59255e68d996936aafc6607555ef4713 (diff) | |
download | refinerycms-blog-e63bf074af8806ac643e14a797e6c413d6c64c40.tar.gz refinerycms-blog-e63bf074af8806ac643e14a797e6c413d6c64c40.tar.bz2 refinerycms-blog-e63bf074af8806ac643e14a797e6c413d6c64c40.zip |
Does it matter that these are out of order on different rubies? cc @joemsak
Diffstat (limited to 'spec')
-rw-r--r-- | spec/requests/refinery/blog/admin/posts_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/requests/refinery/blog/admin/posts_spec.rb b/spec/requests/refinery/blog/admin/posts_spec.rb index e1ffe0d..acd0348 100644 --- a/spec/requests/refinery/blog/admin/posts_spec.rb +++ b/spec/requests/refinery/blog/admin/posts_spec.rb @@ -77,7 +77,7 @@ module Refinery end it "should have the specified tags" do - subject.class.last.tag_list.should eq(@tag_list.split(', ')) + subject.class.last.tag_list.sort.should eq(@tag_list.split(', ').sort) end end end |