Allon Mureinik has uploaded a new change for review. Change subject: core: GetWatchdogQueryTest spec params declaration ......................................................................
core: GetWatchdogQueryTest spec params declaration Fixed the spec params declaration to conform to Java 7's coding standard. Change-Id: I39a0ad84e827ef1676c6a7300fb73553138f21cb Signed-off-by: Allon Mureinik <[email protected]> --- M backend/manager/modules/bll/src/test/java/org/ovirt/engine/core/bll/GetWatchdogQueryTest.java 1 file changed, 2 insertions(+), 1 deletion(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-engine refs/changes/54/23354/1 diff --git a/backend/manager/modules/bll/src/test/java/org/ovirt/engine/core/bll/GetWatchdogQueryTest.java b/backend/manager/modules/bll/src/test/java/org/ovirt/engine/core/bll/GetWatchdogQueryTest.java index a95c8f5..b073500 100644 --- a/backend/manager/modules/bll/src/test/java/org/ovirt/engine/core/bll/GetWatchdogQueryTest.java +++ b/backend/manager/modules/bll/src/test/java/org/ovirt/engine/core/bll/GetWatchdogQueryTest.java @@ -3,6 +3,7 @@ import java.util.Collections; import java.util.HashMap; import java.util.List; +import java.util.Map; import org.junit.Assert; import org.junit.Test; @@ -42,7 +43,7 @@ @Test public void executeQueryCommandWithWatchdog() { - HashMap<String, Object> watchdogSpecParams = new HashMap<String, Object>(); + Map<String, Object> watchdogSpecParams = new HashMap<>(); watchdogSpecParams.put("model", "i6300esb"); watchdogSpecParams.put("action", "reset"); VmDevice vmDevice = new VmDevice(new VmDeviceId(new Guid("6f86b8a4-e721-4149-b2df-056eb621b16a"), -- To view, visit http://gerrit.ovirt.org/23354 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I39a0ad84e827ef1676c6a7300fb73553138f21cb Gerrit-PatchSet: 1 Gerrit-Project: ovirt-engine Gerrit-Branch: master Gerrit-Owner: Allon Mureinik <[email protected]> _______________________________________________ Engine-patches mailing list [email protected] http://lists.ovirt.org/mailman/listinfo/engine-patches
