fix intermittent failing spec

This commit is contained in:
Neil Lalonde 2017-03-07 11:59:05 -05:00
parent d95e4102c1
commit 0661cebbcf
1 changed files with 1 additions and 1 deletions

View File

@ -286,7 +286,7 @@ describe TopicsBulkAction do
topic_ids = tba.perform!
expect(topic_ids).to eq([])
topic.reload
expect(topic.tags.map(&:name)).to eq([tag1.name, tag2.name])
expect(topic.tags.map(&:name).sort).to eq([tag1.name, tag2.name].sort)
end
end
end