diff --git a/build.gradle b/build.gradle
index 6aff08099..165c22dfd 100644
--- a/build.gradle
+++ b/build.gradle
@@ -43,7 +43,7 @@ repositories {
maven { url "http://cfmlprojects.org/artifacts" }
}
dependencies {
- compile group: 'com.github.cfparser', name: 'cfml.parsing', version:'2.5.4'
+ compile group: 'com.github.cfparser', name: 'cfml.parsing', version:'2.5.5'
compile group: 'commons-cli', name: 'commons-cli', version:'1.2'
compile group: 'ro.fortsoft.pf4j', name: 'pf4j', version:'0.6'
compile group: 'ant', name: 'ant', version:'1.7.0'
diff --git a/pom.xml b/pom.xml
index 01e6d0bee..f4d8725a5 100644
--- a/pom.xml
+++ b/pom.xml
@@ -69,7 +69,7 @@
1.7
1.7
- 2.5.4
+ 2.5.5
2.8.6
1.7.21
diff --git a/src/test/resources/com/cflint/tests/VariableNameChecker/leaderboard_450.cfc b/src/test/resources/com/cflint/tests/VariableNameChecker/leaderboard_450.cfc
new file mode 100644
index 000000000..8f4e6a6df
--- /dev/null
+++ b/src/test/resources/com/cflint/tests/VariableNameChecker/leaderboard_450.cfc
@@ -0,0 +1,11 @@
+component {
+ private any function call( required string url ){
+ var service = new http(
+ url = arguments.url
+ , method = "GET"
+ , charset = "utf-8"
+ , timeout = variables.config.timeout
+ , throwonerror = "false"
+ );
+ }
+}
\ No newline at end of file
diff --git a/src/test/resources/com/cflint/tests/VariableNameChecker/leaderboard_450.expected.txt b/src/test/resources/com/cflint/tests/VariableNameChecker/leaderboard_450.expected.txt
new file mode 100644
index 000000000..269d9cd46
--- /dev/null
+++ b/src/test/resources/com/cflint/tests/VariableNameChecker/leaderboard_450.expected.txt
@@ -0,0 +1,11 @@
+{
+ "version" : "",
+ "timestamp" : 1503020142,
+ "issues" : [ ],
+ "counts" : {
+ "totalFiles" : 0,
+ "totalLines" : 0,
+ "countByCode" : [ ],
+ "countBySeverity" : [ ]
+ }
+}
\ No newline at end of file