From 83be25ec823eb2f80942d631d60dfa9b848340d9 Mon Sep 17 00:00:00 2001 From: poikilos <7557867+poikilos@users.noreply.github.com> Date: Thu, 18 Feb 2021 09:36:39 -0500 Subject: [PATCH] distinquish assertions by fruit names --- Utility.cpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Utility.cpp b/Utility.cpp index 1868870..6edf50c 100644 --- a/Utility.cpp +++ b/Utility.cpp @@ -503,14 +503,14 @@ TestUtility::TestUtility() { testReplaceAll(L"***water_dragon***", L"***", L"", L"water_dragon"); testReplaceAll(L"***water_dragon***", L"", L"***", L"***water_dragon***"); // do nothing - testLTrim("pear ", "pear"); - testLTrim(" pear ", "pear "); - testRTrim(" pear ", " pear"); - testRTrim("pear ", "pear"); - testTrim(" pear ", "pear"); - testTrim("pear ", "pear"); - testTrim(" pear", "pear"); - testTrim("pear ", "pear"); + testLTrim("apple ", "apple"); + testLTrim(" banana ", "banana "); + testRTrim(" cantelope ", " cantelope"); + testRTrim("dragon fruit ", "dragon fruit"); + testTrim(" elderberry ", "elderberry"); + testTrim("fig ", "fig"); + testTrim(" grape", "grape"); + testTrim("horned melon ", "horned melon"); std::cerr << "OK" << std::endl; }