소스 검색

debug -again

Emmanuel Peroumalnaik 11 년 전
부모
커밋
64ae437468
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      lib/Selenium/Remote/Mock/RemoteConnection.pm

+ 2 - 1
lib/Selenium/Remote/Mock/RemoteConnection.pm

@@ -127,7 +127,8 @@ sub request {
         my $resp;
         my $arr_of_resps = $self->session_store->{"$method $url $content"} // [];
         use DDP; 
-        p "$method $url $content";
+        my $s =  "$method $url $content";
+        p $s;
         if ( scalar(@$arr_of_resps) ) {
             $resp = shift @$arr_of_resps;
             $resp = HTTP::Response->parse($resp);