Github user jeking3 commented on a diff in the pull request:
https://github.com/apache/thrift/pull/831#discussion_r146873988
--- Diff: test/perl/TestClient.pl ---
@@ -250,16 +250,16 @@ sub usage {
#
# SET TEST
#
-my $setout = [];
+my $setout = {};
for (my $i = -2; $i < 3; ++$i) {
- push(@$setout, $i);
+ $setout->{$i} = 1;
--- End diff --
Do you have a follow-up to this?---
