diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-07-26 18:41:44 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-07-26 18:41:44 +0000 |
commit | 8e1f7607ec6d96fd9314c8b5b0690862065a2f23 (patch) | |
tree | aa2b6132ced35e783c6b898a6e0801c34b562637 /test | |
parent | 87f284dcb6c54047948f39cf5ce58444eae73c1e (diff) | |
download | redmine-8e1f7607ec6d96fd9314c8b5b0690862065a2f23.tar.gz redmine-8e1f7607ec6d96fd9314c8b5b0690862065a2f23.zip |
Identifier is now frozen.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10082 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test')
-rw-r--r-- | test/functional/repositories_git_controller_test.rb | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/test/functional/repositories_git_controller_test.rb b/test/functional/repositories_git_controller_test.rb index 44e74ea7d..35f65419e 100644 --- a/test/functional/repositories_git_controller_test.rb +++ b/test/functional/repositories_git_controller_test.rb @@ -77,12 +77,10 @@ class RepositoriesGitControllerTest < ActionController::TestCase put :update, :id => repository.id, :repository => { - :extra_report_last_commit => '0', - :identifier => 'test-update', + :extra_report_last_commit => '0' } assert_response 302 repo2 = Repository.find(repository.id) - assert_equal 'test-update', repo2.identifier assert_equal false, repo2.extra_report_last_commit end |