diff --git a/tests/fieldtypes/TextTest.php b/tests/fieldtypes/TextTest.php index 3b961f912..d7aa965e7 100644 --- a/tests/fieldtypes/TextTest.php +++ b/tests/fieldtypes/TextTest.php @@ -112,14 +112,14 @@ class TextTest extends SapphireTest { $textObj = DBField::create('Text', $testString1, 'Text'); $this->assertEquals( - 'text. It is a test', + '... text. It is a test...', $textObj->ContextSummary(20, $testKeywords1) ); - + $textObj->setValue($testString2); $this->assertEquals( - 'This is some test text. test test what if you have', + 'This is some test text. test test what if you have...', $textObj->ContextSummary(50, $testKeywords2) ); }