X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/3c7789014106c9269b0f4ecc1a3071b14f351d3f..bbd55ff9564dcaf1a5d2ee93d789c4d656baabef:/tests/controls/textentrytest.cpp diff --git a/tests/controls/textentrytest.cpp b/tests/controls/textentrytest.cpp index 70cc1f77ba..fcd911cf8c 100644 --- a/tests/controls/textentrytest.cpp +++ b/tests/controls/textentrytest.cpp @@ -174,13 +174,13 @@ void TextEntryTestCase::Replace() { wxTextEntry * const entry = GetTestEntry(); - entry->SetValue("Hello replace\n" + entry->SetValue("Hello replace!" "0123456789012"); entry->SetInsertionPoint(0); entry->Replace(6, 13, "changed"); - CPPUNIT_ASSERT_EQUAL("Hello changed\n" + CPPUNIT_ASSERT_EQUAL("Hello changed!" "0123456789012", entry->GetValue()); CPPUNIT_ASSERT_EQUAL(13, entry->GetInsertionPoint());