summaryrefslogtreecommitdiffstats
path: root/test/unit/repository_git_test.rb
diff options
context:
space:
mode:
authorGo MAEDA <maeda@farend.jp>2020-04-18 04:59:51 +0000
committerGo MAEDA <maeda@farend.jp>2020-04-18 04:59:51 +0000
commit0e9c9fbe93a21b2dd26ba9ebd2a2d365925f1896 (patch)
tree13e6ed6d680a44769ccfeeb7c6cd9870706b472b /test/unit/repository_git_test.rb
parent49af8977122487a6cadcf4fa60f1cb6fcf7004d6 (diff)
downloadredmine-0e9c9fbe93a21b2dd26ba9ebd2a2d365925f1896.tar.gz
redmine-0e9c9fbe93a21b2dd26ba9ebd2a2d365925f1896.zip
Fix a RuboCop offense Style/ColonMethodCall due to r19699 (#24030).
git-svn-id: http://svn.redmine.org/redmine/trunk@19706 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/unit/repository_git_test.rb')
-rw-r--r--test/unit/repository_git_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/repository_git_test.rb b/test/unit/repository_git_test.rb
index a25a771e1..ea4de0f11 100644
--- a/test/unit/repository_git_test.rb
+++ b/test/unit/repository_git_test.rb
@@ -592,7 +592,7 @@ class RepositoryGitTest < ActiveSupport::TestCase
end
if File.directory?(REPOSITORY_UTF8_PATH) &&
- !(Redmine::Database::mysql? && !is_mysql_utf8mb4)
+ !(Redmine::Database.mysql? && !is_mysql_utf8mb4)
def test_utf8_emoji
repo = Repository::Git.create(
:project => @project,