Change to more efficient error injection in ecjpake_do_round()

Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
diff --git a/tests/suites/test_suite_psa_crypto.function b/tests/suites/test_suite_psa_crypto.function
index 5261ded..c5a8cde 100644
--- a/tests/suites/test_suite_psa_crypto.function
+++ b/tests/suites/test_suite_psa_crypto.function
@@ -775,7 +775,7 @@
 
             if( inject_error == 1 )
             {
-                buffer0[s_x1_pk_off + 12] >>= 4;
+                buffer0[s_x1_pk_off + 8] >>= 4;
                 buffer0[s_x2_pk_off + 7] <<= 4;
                 expected_status = PSA_ERROR_DATA_INVALID;
             }
@@ -1090,7 +1090,7 @@
 
             if( inject_error == 3 )
             {
-                buffer0[s_x2s_pk_off + 12] >>= 4;
+                buffer0[s_x2s_pk_off + 12] += 0x33;
                 expected_status = PSA_ERROR_DATA_INVALID;
             }
 
@@ -1207,7 +1207,7 @@
 
             if( inject_error == 4 )
             {
-                buffer1[c_x2s_pk_off + 12] >>= 4;
+                buffer1[c_x2s_pk_off + 7] += 0x28;
                 expected_status = PSA_ERROR_DATA_INVALID;
             }