diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2020-11-22 12:59:18 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2020-11-22 12:59:18 +0000 |
commit | 6ec4b42555c04dc0c2817909d3ab86c19f99b86c (patch) | |
tree | ae736c7383c7124f275eeb2d7951d01ec6887db9 | |
parent | 7a3eea61786eea288d76878004f64cfb9ba56cae (diff) | |
download | redmine-6ec4b42555c04dc0c2817909d3ab86c19f99b86c.tar.gz redmine-6ec4b42555c04dc0c2817909d3ab86c19f99b86c.zip |
remove spaces inside {} of test/unit/project_nested_set_test.rb
git-svn-id: http://svn.redmine.org/redmine/trunk@20475 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | test/unit/project_nested_set_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/project_nested_set_test.rb b/test/unit/project_nested_set_test.rb index 16d7cf155..78f1f5a53 100644 --- a/test/unit/project_nested_set_test.rb +++ b/test/unit/project_nested_set_test.rb @@ -57,7 +57,7 @@ class ProjectNestedSetTest < ActiveSupport::TestCase end def test_rebuild_tree_should_build_valid_tree_even_with_valid_lft_rgt_values - Project.where({:id => @a.id }).update_all("name = 'YY'") + Project.where({:id => @a.id}).update_all("name = 'YY'") # lft and rgt values are still valid (Project.rebuild! would not update anything) # but projects are not ordered properly (YY is in the first place) |