浏览代码

Change whitespace: Wrap comments in upload file

Daniel Gempesaw 10 年之前
父节点
当前提交
da0b8e21ce
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. 2 1
      lib/Selenium/Remote/Driver.pm

+ 2 - 1
lib/Selenium/Remote/Driver.pm

@@ -2483,7 +2483,8 @@ sub upload_file {
     my $res = { 'command' => 'uploadFile' };    # /session/:SessionId/file
     my $ret = $self->_execute_command( $res, $params );
 
-    #WORKAROUND: Since this is undocumented selenium functionality, work around a bug.
+    #WORKAROUND: Since this is undocumented selenium functionality,
+    #work around a bug.
     my ($drive, $path, $file) = File::Spec::Functions::splitpath($ret);
     if ($file ne $filename) {
         $ret = File::Spec::Functions::catpath($drive,$path,$filename);