Improved a unit test

--HG--
branch : dev
This commit is contained in:
Sebastien Ros
2010-07-16 13:42:07 -07:00
parent 97ad881995
commit bd50d68644

View File

@@ -177,7 +177,7 @@ namespace Orchard.Tests.ContentManagement {
[Test]
public void BigStringsShouldNotBeTruncated() {
var megaRepository = _container.Resolve<IRepository<MegaRecord>>();
var mega = new MegaRecord() { BigStuff = new string('x', 4000) };
var mega = new MegaRecord() { BigStuff = new string('x', 20000) };
megaRepository.Create(mega);
_session.Flush();
}