mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-07-07 14:00:38 +00:00
Fix error.c test suite relying on old name
This commit is contained in:
parent
c59c9c1453
commit
f8669dabf2
|
@ -12,7 +12,7 @@ void error_strerror( int code, char *result_str )
|
||||||
{
|
{
|
||||||
char buf[500];
|
char buf[500];
|
||||||
|
|
||||||
error_strerror( code, buf, 500 );
|
polarssl_strerror( code, buf, 500 );
|
||||||
|
|
||||||
TEST_ASSERT( strcmp( buf, result_str ) == 0 );
|
TEST_ASSERT( strcmp( buf, result_str ) == 0 );
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue