Commit 41f322df authored by lichenchong's avatar lichenchong
Browse files

Update default erase pin as "NULL" to keep consistent with drive.

parent f30835b1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -112,7 +112,7 @@ public abstract class AbstractIntegrationTestTarget {
	protected void performISE() throws KineticException {
		KineticAdminClient kineticAdminClient = KineticAdminClientFactory
				.createInstance(getAdminClientConfig());
		kineticAdminClient.instantErase("anything".getBytes(Charset
		kineticAdminClient.instantErase("NULL".getBytes(Charset
				.forName("UTF-8")));
		kineticAdminClient.close();
	}
+1 −1
Original line number Diff line number Diff line
@@ -118,7 +118,7 @@ public class IntegrationTestCase {
	@BeforeMethod(alwaysRun = true)
	protected void securityEraseTarget() throws KineticException {
		getAdminClient().secureErase(
				"anything".getBytes(Charset.forName("UTF-8")));
				"NULL".getBytes(Charset.forName("UTF-8")));
	}

	/**