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

Commit fc1abd71 authored by Florian Mayer's avatar Florian Mayer Committed by Gerrit Code Review
Browse files

Merge "Fix SerializeFileDescriptor."

parents 27590051 ae0a0e46
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -381,7 +381,7 @@ TEST_F(SerializationTest, SerializeFileDescriptor) {
    string expected = "TestingFileDescriptors";
    vector<char> buf(expected.length());
    base::ReadFully(file_descriptors[0].release(), buf.data(), buf.size());
    ASSERT_EQ(expected, string(buf.data()));
    ASSERT_EQ(expected, string(buf.data(), expected.length()));
}

TEST_F(SerializationTest, SerializeIBinder) {