MINOR Fixing broken test in pgsql

This commit is contained in:
Sean Harvey 2012-05-03 11:22:12 +12:00
parent 151abde17d
commit 521d436b45

View File

@ -17,6 +17,7 @@ class GridFieldExportButtonTest extends SapphireTest {
parent::setUp();
$this->list = new DataList('GridFieldExportButtonTest_Team');
$this->list->sort('Name');
$config = GridFieldConfig::create()->addComponent(new GridFieldExportButton());
$this->gridField = new GridField('testfield', 'testfield', $this->list, $config);
}