tests/tinycrypt/aes: Replace spaces by tabs

This commit replaces spaces by tabs in the TinyCrypt AES test.

Three 'space required before the open brace' issues are also
fixed by this commit.

Change-Id: I27e961484899873a25847452d569b50322dba74d
Signed-off-by: Flavio Santes <flavio.santes@intel.com>
This commit is contained in:
Flavio Santes 2016-11-17 05:39:56 -06:00 committed by Anas Nashif
commit bb8f324d94

View file

@ -2056,12 +2056,14 @@ void main(void)
} }
result = test_3(); result = test_3();
if (result == TC_FAIL) { /* terminate test */ if (result == TC_FAIL) { /* terminate test */
TC_ERROR("AES128 test #3 (NIST fixed-key and variable-text) failed.\n"); TC_ERROR("AES128 test #3 (NIST fixed-key and variable-text) "
"failed.\n");
goto exitTest; goto exitTest;
} }
result = test_4(); result = test_4();
if (result == TC_FAIL) { /* terminate test */ if (result == TC_FAIL) { /* terminate test */
TC_ERROR("AES128 test #4 (NIST variable-key and fixed-text) failed.\n"); TC_ERROR("AES128 test #4 (NIST variable-key and fixed-text) "
"failed.\n");
goto exitTest; goto exitTest;
} }