Browse Source

Fixed tests failures (#19400).

git-svn-id: http://svn.redmine.org/redmine/trunk@14161 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/3.1.0
Jean-Philippe Lang 9 years ago
parent
commit
8c6e5513a1

+ 1
- 1
test/functional/repositories_git_controller_test.rb View File

@@ -251,7 +251,7 @@ class RepositoriesGitControllerTest < ActionController::TestCase

def test_diff
assert_equal true, @repository.is_default
assert_nil @repository.identifier
assert @repository.identifier.blank?
assert_equal 0, @repository.changesets.count
@repository.fetch_changesets
@project.reload

+ 2
- 0
test/unit/repository_git_test.rb View File

@@ -50,6 +50,8 @@ class RepositoryGitTest < ActiveSupport::TestCase
end

def test_nondefault_repo_with_blank_identifier_destruction
Repository.delete_all

repo1 = Repository::Git.new(
:project => @project,
:url => REPOSITORY_PATH,

Loading…
Cancel
Save