summaryrefslogtreecommitdiffstats
path: root/xt/lib/QA/RPC/XMLRPC.pm
diff options
context:
space:
mode:
authorFrédéric Buclin <LpSolit@gmail.com>2016-03-05 12:51:08 +0100
committerFrédéric Buclin <LpSolit@gmail.com>2016-03-05 12:51:08 +0100
commit7d2b61efa6db4f515c1d9640e1beda89138f9e00 (patch)
tree4e3a54d1b8f54d0a4f58a28e2e453f11773927c0 /xt/lib/QA/RPC/XMLRPC.pm
parent86fb87f1a65a17e7a86fe71b06d57767b0b3ea3b (diff)
downloadbugzilla-7d2b61efa6db4f515c1d9640e1beda89138f9e00.tar.gz
bugzilla-7d2b61efa6db4f515c1d9640e1beda89138f9e00.tar.xz
Some more cleanup in xt/
Diffstat (limited to 'xt/lib/QA/RPC/XMLRPC.pm')
-rw-r--r--xt/lib/QA/RPC/XMLRPC.pm4
1 files changed, 1 insertions, 3 deletions
diff --git a/xt/lib/QA/RPC/XMLRPC.pm b/xt/lib/QA/RPC/XMLRPC.pm
index ced9f97ee..7e4bcac24 100644
--- a/xt/lib/QA/RPC/XMLRPC.pm
+++ b/xt/lib/QA/RPC/XMLRPC.pm
@@ -16,11 +16,9 @@ use warnings;
use FindBin qw($RealBin);
use lib "$RealBin/../../../lib", "$RealBin/../../../../local/lib/perl5";
-use base qw(QA::RPC XMLRPC::Lite);
+use parent qw(QA::RPC XMLRPC::Lite);
use constant TYPE => 'XML-RPC';
use constant DATETIME_REGEX => qr/^\d{8}T\d\d:\d\d:\d\d$/;
1;
-
-__END__