From: Arnaud Giersch Date: Fri, 12 Jun 2020 11:42:17 +0000 (+0200) Subject: Spelling fix, just like the line below. X-Git-Tag: v3.26~529 X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/58dbfb4490241db88f09238231fcb3bc96f5da8d Spelling fix, just like the line below. --- diff --git a/src/xbt/xbt_str_test.cpp b/src/xbt/xbt_str_test.cpp index d832dd2f57..81ed1aa0da 100644 --- a/src/xbt/xbt_str_test.cpp +++ b/src/xbt/xbt_str_test.cpp @@ -50,7 +50,7 @@ TEST_CASE("xbt::str: String Handling", "xbt_str") test_split_quoted("Useless backslashes", "\\t\\o\\t\\o \\t\\u\\t\\u", {"toto", "tutu"}); test_split_quoted("Protected space", "toto\\ tutu", {"toto tutu"}); test_split_quoted("Several spaces", "toto tutu", {"toto", "tutu"}); - test_split_quoted("LTriming", " toto tatu", {"toto", "tatu"}); + test_split_quoted("LTrimming", " toto tatu", {"toto", "tatu"}); test_split_quoted("Trimming", " toto tutu ", {"toto", "tutu"}); test_split_quoted("Single quotes", "'toto tutu' tata", {"toto tutu", "tata"}); test_split_quoted("Double quotes", "\"toto tutu\" tata", {"toto tutu", "tata"});