Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e7a31018 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Specify physical address in hex, to fix broken test."

parents 0b6543bb e0d01022
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -34,13 +34,13 @@ public class HdmiCecMessageBuilderTest {
    public void buildReportPhysicalAddressCommand() {
        HdmiCecMessage message =
                HdmiCecMessageBuilder.buildReportPhysicalAddressCommand(
                        ADDR_PLAYBACK_1, 01234, HdmiDeviceInfo.DEVICE_PLAYBACK);
                        ADDR_PLAYBACK_1, 0x1234, HdmiDeviceInfo.DEVICE_PLAYBACK);
        assertThat(message)
                .isEqualTo(
                        new HdmiCecMessage(
                                ADDR_PLAYBACK_1,
                                ADDR_BROADCAST,
                                Constants.MESSAGE_REPORT_PHYSICAL_ADDRESS,
                                new byte[] {012, 034}));
                                new byte[] {0x12, 0x34, 0x04}));
    }
}