Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
sokil committed Oct 29, 2018
1 parent 20d7134 commit 78e851b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions tests/ManagerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ public function testGetAvailableRevisions()
$revision = current($availableRevisions);
$this->assertInstanceOf('\Sokil\Mongo\Migrator\Revision', $revision);

$this->assertEquals('20140531201029', $revision->getId());
$this->assertEquals('Test5', $revision->getName());
$this->assertEquals('20140531201029_Test5.php', $revision->getFilename());
$this->assertEquals('20140531183810', $revision->getId());
$this->assertEquals('InitialRevision', $revision->getName());
$this->assertEquals('20140531183810_InitialRevision.php', $revision->getFilename());
}

public function testGetClient()
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

class InititalRevision extends \Sokil\Mongo\Migrator\AbstractMigration
class InitialRevision extends \Sokil\Mongo\Migrator\AbstractMigration
{
public function up()
{
Expand Down

0 comments on commit 78e851b

Please sign in to comment.