changed test file to something not on adrian's computer

git-svn-id: http://jclouds.googlecode.com/svn/trunk@486 3d8758e0-26b5-11de-8745-db77d3ebf521
This commit is contained in:
adrian.f.cole 2009-05-09 20:57:10 +00:00
parent db14a0232d
commit 7ece94af55
1 changed files with 2 additions and 3 deletions

View File

@ -176,14 +176,13 @@ public abstract class BasePerformance extends S3IntegrationTest {
class PutFileCallable implements Provider<Callable<Boolean>> {
final AtomicInteger key = new AtomicInteger(0);
protected File file = new File(
"/Users/adriancole/Desktop/charles_ca_certificate.zip");
protected File file = new File("pom.xml");
public Callable<Boolean> get() {
return new Callable<Boolean>() {
public Boolean call() throws Exception {
return putFile(BUCKET_FILE, key.getAndIncrement() + "",
file, "application/zip");
file, "text/xml");
}
};