Fix unnecessary header prefixes in tests

Remove unnecessary "../library" prefix from test suite includes. This
makes the tests repo-agnostic between the mbedtls and psa-crypto repos.

Signed-off-by: David Horstmann <david.horstmann@arm.com>
This commit is contained in:
David Horstmann 2023-08-30 15:34:34 +01:00
parent 29bf911058
commit 22ec2aefa9
2 changed files with 2 additions and 2 deletions

View file

@ -1,5 +1,5 @@
/* BEGIN_HEADER */
#include "../library/common.h"
#include "common.h"
void fill_arrays(unsigned char *a, unsigned char *b, unsigned char *r1, unsigned char *r2, size_t n)
{

View file

@ -10,7 +10,7 @@
* before changing how test data is constructed or validated.
*/
#include "../library/psa_crypto_its.h"
#include "psa_crypto_its.h"
#include "test/psa_helpers.h"