summaryrefslogtreecommitdiffstats
path: root/test/unit/changeset_test.rb
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2013-12-06 23:42:06 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2013-12-06 23:42:06 +0000
commita624204f1b4023dcb84f40e0535afd3b073a80e9 (patch)
treee6271de50d2a049032f09f69c25017e9a0091055 /test/unit/changeset_test.rb
parent436d44962d1fa2217a8a122146cb6777802f9a85 (diff)
downloadredmine-a624204f1b4023dcb84f40e0535afd3b073a80e9.tar.gz
redmine-a624204f1b4023dcb84f40e0535afd3b073a80e9.zip
remove extra empty lines from test/unit/changeset_test.rb
git-svn-id: http://svn.redmine.org/redmine/trunk@12364 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/unit/changeset_test.rb')
-rw-r--r--test/unit/changeset_test.rb3
1 files changed, 0 insertions, 3 deletions
diff --git a/test/unit/changeset_test.rb b/test/unit/changeset_test.rb
index 0eea5f88b..a267a068f 100644
--- a/test/unit/changeset_test.rb
+++ b/test/unit/changeset_test.rb
@@ -249,7 +249,6 @@ class ChangesetTest < ActiveSupport::TestCase
r = Repository::Subversion.create!(
:project => Project.find(3),
:url => 'svn://localhost/test')
-
with_settings :commit_cross_project_ref => '0' do
c = Changeset.new(:repository => r,
:committed_on => Time.now,
@@ -264,7 +263,6 @@ class ChangesetTest < ActiveSupport::TestCase
r = Repository::Subversion.create!(
:project => Project.find(3),
:url => 'svn://localhost/test')
-
with_settings :commit_cross_project_ref => '1' do
c = Changeset.new(:repository => r,
:committed_on => Time.now,
@@ -317,7 +315,6 @@ class ChangesetTest < ActiveSupport::TestCase
:project_id => 1,
:url => 'svn://localhost/test',
:identifier => 'documents')
-
c = Changeset.new(:revision => '520', :repository => r)
assert_equal 'documents|r520', c.text_tag
assert_equal 'ecookbook:documents|r520', c.text_tag(Project.find(2))