[Minor] removed underscore in test objects

This commit is contained in:
Robert von Burg 2014-09-14 12:14:25 +02:00
parent b6a0938dc3
commit a8d25c2dd1
2 changed files with 12 additions and 12 deletions

View File

@ -236,11 +236,11 @@ public class OrderModelTestRunner {
}
try (StrolchTransaction tx = this.runtimeMock.getRealm(this.realmName).openTx(certificate, "test")) {
Order order = tx.getOrderMap().getBy(tx, "MyType1", "@_00000001");
Order order = tx.getOrderMap().getBy(tx, "MyType1", "@00000001");
assertNotNull(order);
order = tx.getOrderMap().getBy(tx, "MyType2", "@_00000006");
order = tx.getOrderMap().getBy(tx, "MyType2", "@00000006");
assertNotNull(order);
order = tx.getOrderMap().getBy(tx, "MyType3", "@_00000011");
order = tx.getOrderMap().getBy(tx, "MyType3", "@00000011");
assertNotNull(order);
}
}

View File

@ -236,11 +236,11 @@ public class ResourceModelTestRunner {
}
try (StrolchTransaction tx = this.runtimeMock.getRealm(this.realmName).openTx(certificate, "test")) {
Resource resource = tx.getResourceMap().getBy(tx, "MyType1", "@_00000001");
Resource resource = tx.getResourceMap().getBy(tx, "MyType1", "@00000001");
assertNotNull(resource);
resource = tx.getResourceMap().getBy(tx, "MyType2", "@_00000006");
resource = tx.getResourceMap().getBy(tx, "MyType2", "@00000006");
assertNotNull(resource);
resource = tx.getResourceMap().getBy(tx, "MyType3", "@_00000011");
resource = tx.getResourceMap().getBy(tx, "MyType3", "@00000011");
assertNotNull(resource);
}
}