[tests] Use TinyConsole::string instead of any

This commit is contained in:
Francois BIOT
2023-02-20 02:24:39 +01:00
parent c21b7b63fb
commit 775fbc14ee
8 changed files with 92 additions and 79 deletions

View File

@@ -9,6 +9,8 @@
*
**/
using string = TinyConsole::string;
test(indexer_empty)
{
assertEqual(StringIndexer::count(), 0);
@@ -82,7 +84,7 @@ test(indexer_indexed_operator_eq)
test(indexer_get_string)
{
TinyString sone("one");
string sone("one");
IndexedString one(sone);
assertTrue(sone==one.str());