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

Commit 999d1fc1 authored by Benedict Wong's avatar Benedict Wong Committed by Gerrit Code Review
Browse files

Merge "Correct bug in IpSecTransformTest"

parents 4eaa22f2 cd67fb3e
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -17,6 +17,7 @@
package android.net;

import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;

import android.support.test.filters.SmallTest;

@@ -56,6 +57,6 @@ public class IpSecTransformTest {
        IpSecTransform config1 = new IpSecTransform(null, config);
        IpSecTransform config2 = new IpSecTransform(null, config);

        assertFalse(IpSecTransform.equals(config1, config2));
        assertTrue(IpSecTransform.equals(config1, config2));
    }
}