aboutsummaryrefslogtreecommitdiffstats
path: root/qtest
diff options
context:
space:
mode:
authorThorsten Schöning <tschoening@users.noreply.github.com>2015-11-19 20:50:37 +0100
committerJay Berkenbilt <ejb@ql.org>2016-01-24 17:51:38 +0100
commit8ae7001729ca98a54d04d5fe40c52e677f139187 (patch)
tree32431b429af5fff96a83f3f72b6f430c2c9ae7d4 /qtest
parentb7302a9b727d28d59bff0f0f7d8d62ff6486aef6 (diff)
downloadqpdf-8ae7001729ca98a54d04d5fe40c52e677f139187.tar.zst
Useless use of a constant in void context
Remove an extraneous newline to avoid useless constant warning.
Diffstat (limited to 'qtest')
-rw-r--r--qtest/module/TestDriver.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/qtest/module/TestDriver.pm b/qtest/module/TestDriver.pm
index d581216c..117e72c6 100644
--- a/qtest/module/TestDriver.pm
+++ b/qtest/module/TestDriver.pm
@@ -386,7 +386,8 @@ sub report
push(@vals, map { $rep->{+__PACKAGE__}{$_} } ($f_passes, $f_fails,
$f_xpasses, $f_xfails));
my $socket = $rep->_socket();
- $socket->print(join(' ', @vals)), "\n";
+ $socket->print(join(' ', @vals));
+ $socket->flush();
}
# Usage: notify(string)