scm: bazaar: fix functional test_annotate test.
In spite of revision is incorrect revision, tests pass. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5980 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
958612451b
commit
296d70e8aa
|
@ -132,18 +132,20 @@ class RepositoriesBazaarControllerTest < ActionController::TestCase
|
|||
:tag => 'td',
|
||||
:child => {
|
||||
:tag => 'a',
|
||||
:content => /3/
|
||||
:content => '3'
|
||||
}
|
||||
},
|
||||
}
|
||||
assert_tag :tag => 'th', :content => '2',
|
||||
:sibling => { :tag => 'td', :content => /jsmith/ }
|
||||
assert_tag :tag => 'th', :content => '2',
|
||||
:sibling => {
|
||||
:tag => 'td',
|
||||
:child => {
|
||||
:tag => 'a',
|
||||
:content => /3/
|
||||
:content => '3'
|
||||
}
|
||||
},
|
||||
}
|
||||
assert_tag :tag => 'th', :content => '2',
|
||||
:sibling => { :tag => 'td', :content => /Main purpose/ }
|
||||
end
|
||||
else
|
||||
|
|
Loading…
Reference in New Issue