Skip to content

Commit

Permalink
Fix EmptySoftwareProcessYamlTest
Browse files Browse the repository at this point in the history
  • Loading branch information
aledsage committed Jan 20, 2016
1 parent 2f3e465 commit 7191c7b
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@
import org.apache.brooklyn.api.location.Location;
import org.apache.brooklyn.core.entity.Entities;
import org.apache.brooklyn.entity.software.base.EmptySoftwareProcess;
import org.apache.brooklyn.location.ssh.SshMachineLocation;
import org.apache.brooklyn.util.collections.Jsonya;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.testng.Assert;
import org.testng.annotations.Test;
import org.apache.brooklyn.location.ssh.SshMachineLocation;
import org.apache.brooklyn.util.collections.Jsonya;

@Test
public class EmptySoftwareProcessYamlTest extends AbstractYamlTest {
Expand Down Expand Up @@ -97,6 +97,6 @@ public void testWithAppAndEntityLocations() throws Exception {
Location actualMachine = entityLocationIterator.next();
Assert.assertTrue(actualMachine instanceof SshMachineLocation, "wrong location: "+actualMachine);
// TODO this, below, probably should be 'localhost on entity', see #1377
Assert.assertEquals(actualMachine.getParent().getDisplayName(), "loopback on app");
Assert.assertEquals(actualMachine.getParent().getDisplayName(), "localhost on entity");
}
}

0 comments on commit 7191c7b

Please sign in to comment.