Commit 8ae7001729ca98a54d04d5fe40c52e677f139187
Committed by
Jay Berkenbilt
1 parent
b7302a9b
Useless use of a constant in void context
Remove an extraneous newline to avoid useless constant warning.
Showing
1 changed file
with
2 additions
and
1 deletions
qtest/module/TestDriver.pm
| ... | ... | @@ -386,7 +386,8 @@ sub report |
| 386 | 386 | push(@vals, map { $rep->{+__PACKAGE__}{$_} } ($f_passes, $f_fails, |
| 387 | 387 | $f_xpasses, $f_xfails)); |
| 388 | 388 | my $socket = $rep->_socket(); |
| 389 | - $socket->print(join(' ', @vals)), "\n"; | |
| 389 | + $socket->print(join(' ', @vals)); | |
| 390 | + $socket->flush(); | |
| 390 | 391 | } |
| 391 | 392 | |
| 392 | 393 | # Usage: notify(string) | ... | ... |