Adjusting the test so it doesn't reset the password when executed locally
Project: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/commit/8e102ed2 Tree: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/tree/8e102ed2 Diff: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/diff/8e102ed2 Branch: refs/heads/master Commit: 8e102ed2e913bb4f73cdfa73f26b244e1dbd8a96 Parents: 6f986cb Author: Yavor Yanchev <[email protected]> Authored: Mon Sep 14 11:15:46 2015 +0300 Committer: Yavor Yanchev <[email protected]> Committed: Mon Sep 14 11:15:46 2015 +0300 ---------------------------------------------------------------------- .../apache/brooklyn/policy/jclouds/os/CreateUserPolicyLiveTest.java | 1 - 1 file changed, 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/blob/8e102ed2/locations/jclouds/src/test/java/org/apache/brooklyn/policy/jclouds/os/CreateUserPolicyLiveTest.java ---------------------------------------------------------------------- diff --git a/locations/jclouds/src/test/java/org/apache/brooklyn/policy/jclouds/os/CreateUserPolicyLiveTest.java b/locations/jclouds/src/test/java/org/apache/brooklyn/policy/jclouds/os/CreateUserPolicyLiveTest.java index 72b2083..0fe9b24 100644 --- a/locations/jclouds/src/test/java/org/apache/brooklyn/policy/jclouds/os/CreateUserPolicyLiveTest.java +++ b/locations/jclouds/src/test/java/org/apache/brooklyn/policy/jclouds/os/CreateUserPolicyLiveTest.java @@ -73,7 +73,6 @@ public class CreateUserPolicyLiveTest extends BrooklynAppLiveTestSupport { app.createAndManageChild(EntitySpec.create(TestEntity.class) .policy(PolicySpec.create(CreateUserPolicy.class) .configure(CreateUserPolicy.GRANT_SUDO, true) - .configure(CreateUserPolicy.RESET_LOGIN_USER, true) .configure(CreateUserPolicy.VM_USERNAME, newUsername))); TestEntity entity = (TestEntity) Iterables.getOnlyElement(app.getChildren());
