You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by pm...@apache.org on 2017/03/04 14:43:36 UTC

svn commit: r1785494 - /jmeter/trunk/bin/utility.groovy

Author: pmouawad
Date: Sat Mar  4 14:43:36 2017
New Revision: 1785494

URL: http://svn.apache.org/viewvc?rev=1785494&view=rev
Log:
Uncomment function code for Unit Tests

Modified:
    jmeter/trunk/bin/utility.groovy

Modified: jmeter/trunk/bin/utility.groovy
URL: http://svn.apache.org/viewvc/jmeter/trunk/bin/utility.groovy?rev=1785494&r1=1785493&r2=1785494&view=diff
==============================================================================
--- jmeter/trunk/bin/utility.groovy (original)
+++ jmeter/trunk/bin/utility.groovy Sat Mar  4 14:43:36 2017
@@ -19,5 +19,5 @@
 // "bin/jmeter.properties", if you want to access it through
 // the __groovy function
 //
-// Uncomment this function and use it with ${__groovy(factorial(10))}
-// def factorial(n) { n == 1 ? 1 : n * factorial(n - 1) }
+//Uncomment this function and use it with ${__groovy(factorial(10))}
+def factorial(n) { n == 1 ? 1 : n * factorial(n - 1) }