removed return keyword from Groovy scripts in tests

This commit is contained in:
Mark Fisher
2010-08-18 19:35:09 +00:00
parent 920822c504
commit 10b7c50178
5 changed files with 5 additions and 5 deletions

View File

@@ -1 +1 @@
return headers.type == 'good'
headers.type == 'good'

View File

@@ -1 +1 @@
return payload.length() > 3 ? 'longStrings' : 'shortStrings'
payload.length() > 3 ? 'longStrings' : 'shortStrings'