Merge pull request #55 from SkylarWatson/file_upload_test

Updated payload args in FileUploadTest to match what production code …
This commit is contained in:
Chris Frohoff
2017-09-03 10:32:46 -07:00
committed by GitHub
2 changed files with 3 additions and 1 deletions
+2
View File
@@ -7,6 +7,7 @@ target/
# eclipse
.classpath
.project
.idea
.settings/
# idea
@@ -15,3 +16,4 @@ target/
# tests
pwntest
*.iml
@@ -65,7 +65,7 @@ public class FileUploadTest implements CustomTest {
}
public String getPayloadArgs () {
return "copyAndDelete:" + this.source.getAbsolutePath() + ":" + this.repo.getAbsolutePath();
return "copyAndDelete;" + this.source.getAbsolutePath() + ";" + this.repo.getAbsolutePath();
}
}