Merge "Correct bug in IpSecTransformTest"

This commit is contained in:
Benedict Wong
2018-02-16 18:32:05 +00:00
committed by Gerrit Code Review

View File

@@ -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));
}
}