ran security updates on contrib modules
ctools, video_embed_field, migrate, views_bulk_operations
This commit is contained in:
@@ -40,17 +40,13 @@ class MigrateImportOptionsTest extends DrupalWebTestCase {
|
||||
|
||||
$result = $migration->processImport($options);
|
||||
|
||||
$this->verbose(print_r($timers, 1));
|
||||
$successes = $migration->importedCount();
|
||||
$this->verbose("Total successes: {$successes}");
|
||||
$assertion = format_plural($limit, 'The migration successfully processed 1 item.',
|
||||
'The migration successfully processed @count items.');
|
||||
$this->assertEqual($limit, $successes, $assertion);
|
||||
|
||||
$prepare_row_count = $timers['BeerTermMigration prepareRow']['count'];
|
||||
$this->verbose("prepareRow() count: {$prepare_row_count}");
|
||||
$processed = $migration->processedCount();
|
||||
$this->verbose("Total processed count: {$processed}");
|
||||
$assertion = format_plural($processed, 'The migration executed processRow() on 1 item.',
|
||||
'The migration executed processRow() on @count items.');
|
||||
$this->assertEqual($prepare_row_count, $processed, $assertion);
|
||||
|
Reference in New Issue
Block a user