summaryrefslogtreecommitdiff
path: root/tests/it.t
diff options
context:
space:
mode:
authorChristian Schneider2017-02-07 16:14:44 +0100
committerChristian Schneider2017-02-07 16:14:44 +0100
commitf82923f96c15e957f4265f21597cd2cdc994482f (patch)
tree58a134c583bb7fbc235e748acb1fd2824ece44b2 /tests/it.t
parentfca09880bc39d2814492cee6197a76f12e715d91 (diff)
downloaditools-f82923f96c15e957f4265f21597cd2cdc994482f.tar.gz
itools-f82923f96c15e957f4265f21597cd2cdc994482f.tar.bz2
itools-f82923f96c15e957f4265f21597cd2cdc994482f.zip
Replace create_function which will be deprecated in PHP 7.2
Diffstat (limited to 'tests/it.t')
-rwxr-xr-xtests/it.t1
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/it.t b/tests/it.t
index 88e6cae..88fbbb9 100755
--- a/tests/it.t
+++ b/tests/it.t
@@ -415,7 +415,6 @@ is(it::mod(0, 4), 0);
is(it::mod(7, 4), 3);
is(it::map('5*$k+$v', array(0 => 1, 1 => 2)), array(1, 7));
-is(it::map(create_function('$k,$v', 'return 5*$k+$v;'), array(0 => 1, 1 => 2)), array(1, 7));
is(it::map(function($k, $v) {return 5*$k+$v;}, array(0 => 1, 1 => 2)), array(1, 7));
is(it::map('strlen', array("aaa", "aa")), array(3, 2));
is(it::map('it::ucfirst', array("aaa")), array("Aaa"));