Index: src/libstring/Tests/TestsTString.cpp =================================================================== diff -u -N -r0d5b67ee96b435d63f7bf075dc8e28603793b187 -r1019bc9df4e044491b7102c37c8cac33cf56fb4a --- src/libstring/Tests/TestsTString.cpp (.../TestsTString.cpp) (revision 0d5b67ee96b435d63f7bf075dc8e28603793b187) +++ src/libstring/Tests/TestsTString.cpp (.../TestsTString.cpp) (revision 1019bc9df4e044491b7102c37c8cac33cf56fb4a) @@ -4,7 +4,6 @@ #include "../TString.h" #include "../TStringException.h" #include "../TStringArray.h" -#include "../TCoreException.h" using namespace string; @@ -426,7 +425,7 @@ EXPECT_EQ(arrSplitted.GetAt(6), _T("")); EXPECT_EQ(arrSplitted.GetAt(7), _T("")); EXPECT_EQ(arrSplitted.GetAt(8), _T("")); - EXPECT_THROW(arrSplitted.GetAt(9), TCoreException); + EXPECT_THROW(arrSplitted.GetAt(9), TStringException); } TEST(TStringTests, Split_NormalStringMultipleSeparators) @@ -443,7 +442,7 @@ EXPECT_EQ(arrSplitted.GetAt(6), _T("")); EXPECT_EQ(arrSplitted.GetAt(7), _T("")); EXPECT_EQ(arrSplitted.GetAt(8), _T("")); - EXPECT_THROW(arrSplitted.GetAt(9), TCoreException); + EXPECT_THROW(arrSplitted.GetAt(9), TStringException); } TEST(TStringTests, CompareCaseSensitive_WithPtrToString)