##// END OF EJS Templates
Fixes random failure (database may not return changes in the order expected in the test)....
Jean-Philippe Lang -
r4554:a9eea27742dd
parent child
Show More
@@ -106,7 +106,7 class RepositoryMercurialTest < ActiveSupport::TestCase
106
106
107 cs1 = @repository.changesets.find_by_revision('13')
107 cs1 = @repository.changesets.find_by_revision('13')
108 assert_not_nil cs1
108 assert_not_nil cs1
109 c1 = cs1.changes
109 c1 = cs1.changes.sort_by(&:path)
110 assert_equal 2, c1.size
110 assert_equal 2, c1.size
111
111
112 assert_equal 'A', c1[0].action
112 assert_equal 'A', c1[0].action
General Comments 0
You need to be logged in to leave comments. Login now