remove a local-only change. added test-output/ to .gitignore

This commit is contained in:
Alex Yarmula 2010-03-10 19:17:18 -08:00
parent 4c29ef2e80
commit b6fc347047
2 changed files with 2 additions and 1 deletions

1
.gitignore vendored
View File

@ -1,6 +1,7 @@
# use glob syntax.
syntax: glob
target/
test-output/
.settings
.classpath
.project

View File

@ -92,7 +92,7 @@ public abstract class BaseComputeServiceLiveTest {
public void setupClient() throws InterruptedException, ExecutionException, TimeoutException,
IOException {
if (tag == null)
tag = checkNotNull(service, "service") + "alex";
tag = checkNotNull(service, "service");
user = checkNotNull(System.getProperty("jclouds.test.user"), "jclouds.test.user");
password = checkNotNull(System.getProperty("jclouds.test.key"), "jclouds.test.key");
String secretKeyFile;