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

Commit cd67fb3e authored by Benedict Wong's avatar Benedict Wong
Browse files

Correct bug in IpSecTransformTest

testCreateTransformsWithSameConfigEqual used assertFalse rather than
assertTrue

Bug: 69385347
Test: Passing on walleye
Change-Id: I8caa26e184e8bfc3e8acc9061d85c22d27ebf448
parent 3df127ae
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));
    }
}