Browse Source

Fixes an error raised by cvs test with Postgresql (revision is varchar).

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5415 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/1.2.0
Jean-Philippe Lang 13 years ago
parent
commit
5fd891aa72
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      test/unit/repository_cvs_test.rb

+ 1
- 1
test/unit/repository_cvs_test.rb View File

@@ -117,7 +117,7 @@ class RepositoryCvsTest < ActiveSupport::TestCase
lines = buf.split("\n")
assert_equal 2, lines.length
assert_equal 'with one change', lines[1]
buf = @repository.cat('README', 1)
buf = @repository.cat('README', '1')
assert buf
lines = buf.split("\n")
assert_equal 1, lines.length

Loading…
Cancel
Save