summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/functional/repositories_git_controller_test.rb2
-rw-r--r--test/unit/repository_git_test.rb2
2 files changed, 3 insertions, 1 deletions
diff --git a/test/functional/repositories_git_controller_test.rb b/test/functional/repositories_git_controller_test.rb
index 0c55b571d..e774b93da 100644
--- a/test/functional/repositories_git_controller_test.rb
+++ b/test/functional/repositories_git_controller_test.rb
@@ -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
diff --git a/test/unit/repository_git_test.rb b/test/unit/repository_git_test.rb
index be5726b81..20b72d04a 100644
--- a/test/unit/repository_git_test.rb
+++ b/test/unit/repository_git_test.rb
@@ -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,