소스 검색

Fix another warning

George S. Baugh 4 년 전
부모
커밋
19cce48185
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      lib/Playwright.pm

+ 1 - 1
lib/Playwright.pm

@@ -464,7 +464,7 @@ sub _start_server ( $port, $timeout, $debug ) {
     $ENV{DEBUG} = 'pw:api' if $debug;
     my $pid = fork // confess("Could not fork");
     if ($pid) {
-        print "Waiting for port to come up..." if $debug;
+        print "Waiting for port to come up...\n" if $debug;
         Net::EmptyPort::wait_port( $port, $timeout )
           or confess("Server never came up after 30s!");
         print "done\n" if $debug;