summaryrefslogtreecommitdiff
path: root/test/perl
diff options
context:
space:
mode:
authorJames E. King, III <jking@apache.org>2017-10-29 06:55:00 -0400
committerJames E. King, III <jking@apache.org>2017-10-29 10:15:10 -0400
commit619218cd7f3e7c5e433aed4734f3108bc8492b00 (patch)
tree8052caf6ac269773dcaa0d1ea70e8202c15d288a /test/perl
parent533405e3f85f2925aa1028fc3534e988e5debd32 (diff)
downloadthrift-619218cd7f3e7c5e433aed4734f3108bc8492b00.tar.gz
THRIFT-4343: enable nodejs-8.x on ubuntu-artful image and update grunt-jsdoc
also fix a perl failure as we were using a deprecated language feature in the cross test server for perl. Client: nodejs, perl This closes #1406
Diffstat (limited to 'test/perl')
-rw-r--r--test/perl/TestServer.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/perl/TestServer.pl b/test/perl/TestServer.pl
index c97067e99..1e23ce84a 100644
--- a/test/perl/TestServer.pl
+++ b/test/perl/TestServer.pl
@@ -282,7 +282,7 @@ sub testSet() {
print(", ");
}
print("$key");
- push($result, $key);
+ push(@arr, $key);
}
print("})\n");
return $result;