From ff78e7c45af8910d6b4377a2c343b17b312c2799 Mon Sep 17 00:00:00 2001 From: Phil Nash Date: Wed, 1 Mar 2017 15:58:34 +0000 Subject: [PATCH] Fixed typo in test name --- projects/SelfTest/TestMain.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/SelfTest/TestMain.cpp b/projects/SelfTest/TestMain.cpp index 7251d178..e00966a8 100644 --- a/projects/SelfTest/TestMain.cpp +++ b/projects/SelfTest/TestMain.cpp @@ -471,7 +471,7 @@ TEST_CASE( "Text can be formatted using the Text class", "" ) { CHECK( Text( "hi there", narrow ).toString() == "hi\nthere" ); } -TEST_CASE( "Long text is truncted", "[Text][Truncated]" ) { +TEST_CASE( "Long text is truncated", "[Text][Truncated]" ) { std::string longLine( 90, '*' );