summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorChristian Schneider2019-09-02 17:16:47 +0200
committerChristian Schneider2019-09-02 17:16:47 +0200
commitdeb0c4093407b694e847862c6447a501beaaa018 (patch)
tree8295c9c0b72fd40ad9b33db3cce38986f395c81a /test
parent2b13737e9299317c865f72f4a276ea0b733c4f5f (diff)
downloaditools-deb0c4093407b694e847862c6447a501beaaa018.tar.gz
itools-deb0c4093407b694e847862c6447a501beaaa018.tar.bz2
itools-deb0c4093407b694e847862c6447a501beaaa018.zip
Use older syntax for tests
Diffstat (limited to 'test')
-rwxr-xr-xtest/it.t3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/it.t b/test/it.t
index 0e2b06d..af11b94 100755
--- a/test/it.t
+++ b/test/it.t
@@ -445,7 +445,8 @@ is(it::map('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"));
-($dom = new DOMDocument)->loadXML('<foo>42</foo>');
+$dom = new DOMDocument;
+$dom->loadXML('<foo>42</foo>');
is(it::map('$v->C14N()', $dom->childNodes), [ '<foo>42</foo>' ], "Traversable: Needs copy, not modifiable in-place");
# Special values which are not callable
is(it::map('null', array("aaa", "aa")), array(null, null));