From 9343a50dad78bc43eef2268623e5daf97cb255fb Mon Sep 17 00:00:00 2001
From: David Flatz
Date: Wed, 25 Jan 2017 16:25:40 +0100
Subject: revert changes in it::map

This reverts commit ee8607940a1af96f2366ad4ea75db5b7c2c15c8f.
This reverts commit f59a46a6dfe0194ba43092304029b2b843ed54bc.
---
 tests/it.t | 7 +------
 1 file changed, 1 insertion(+), 6 deletions(-)

(limited to 'tests')

diff --git a/tests/it.t b/tests/it.t
index c4e8249..1a4ccf9 100755
--- a/tests/it.t
+++ b/tests/it.t
@@ -12,6 +12,7 @@ $oldlocale = setlocale(LC_CTYPE, 0);
 ini_set('default_charset', 'utf-8');
 setlocale(LC_CTYPE, 'de_CH');		# required becuase we're checking German umlauts in latin1 mode
 
+
 function match($regex, $string, $expect, $name, $p = array())
 {
 	$GLOBALS['TEST_MORE_LEVEL'] = 1;
@@ -417,9 +418,3 @@ 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"));
-# Only map selected keys
-is(it::map('2*$v', [3, 4, 5], ['keys' => '0,1']), [6, 8, 5]);
-is(it::map('2*$v', [3, 4, 5], ['keys' => [0,1]]), [6, 8, 5]);
-is(it::map('2*$v', ['foo' => 1, 'bar' => 2], ['keys' => 'foo']), ['foo' => 2, 'bar' =>2]);
-- 
cgit v1.2.3