Skip to content

Commit

Permalink
Update property name
Browse files Browse the repository at this point in the history
  • Loading branch information
bburnichon committed Nov 8, 2018
1 parent 648a7b1 commit a8ac3bd
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1558,7 +1558,7 @@ public function testPrimaryKeyAutoIncrement()

public function testGenerateAnIndexWithPartialColumnLength() : void
{
if (! $this->_sm->getDatabasePlatform()->supportsColumnLengthIndexes()) {
if (! $this->schemaManager->getDatabasePlatform()->supportsColumnLengthIndexes()) {
self::markTestSkipped('This test is only supported on platforms that support indexes with column length definitions.');
}

Expand All @@ -1570,9 +1570,9 @@ public function testGenerateAnIndexWithPartialColumnLength() : void

$expected = $table->getIndexes();

$this->_sm->dropAndCreateTable($table);
$this->schemaManager->dropAndCreateTable($table);

$onlineTable = $this->_sm->listTableDetails('test_partial_column_index');
$onlineTable = $this->schemaManager->listTableDetails('test_partial_column_index');
self::assertEquals($expected, $onlineTable->getIndexes());
}
}

0 comments on commit a8ac3bd

Please sign in to comment.