Merge "Wycheproof: Correct a typo in bias ECDSA P256 StrongBox test."
diff --git a/keystore-cts/java/com/google/security/wycheproof/testcases/EcdsaTest.java b/keystore-cts/java/com/google/security/wycheproof/testcases/EcdsaTest.java
index 3a758f3..2e7108f 100644
--- a/keystore-cts/java/com/google/security/wycheproof/testcases/EcdsaTest.java
+++ b/keystore-cts/java/com/google/security/wycheproof/testcases/EcdsaTest.java
@@ -358,6 +358,11 @@
   }
 
   @Test
+  public void testBiasSecp256r1_StrongBox() throws Exception {
+    testBias("SHA256WithECDSA", "secp256r1", true);
+  }
+
+  @Test
   public void testBiasSecp384r1() throws Exception {
     testBias("SHA384WithECDSA", "secp384r1");
   }
@@ -368,11 +373,6 @@
   }
 
   @Test
-  public void testBiasSecp521r1_StrongBox() throws Exception {
-    testBias("SHA256WithECDSA", "secp256r1", true);
-  }
-
-  @Test
   @Ignore // Brainpool curve are not supported in AndroidKeyStore
   public void testBiasBrainpoolP256r1() throws Exception {
     testBias("SHA512WithECDSA", "brainpoolP256r1");