Skip to content

Commit

Permalink
Fixing 2 tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Hackwar committed May 25, 2019
1 parent ed56849 commit 3a9d77a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Unit/Libraries/Cms/VersionTest.php
Expand Up @@ -75,7 +75,7 @@ public function testIsCompatible()
*/
public function testGetHelpVersion()
{
$this->assertIsString('string', $this->version->getHelpVersion());
$this->assertIsString($this->version->getHelpVersion());
}

/**
Expand All @@ -99,7 +99,7 @@ public function testGetShortVersion()
*/
public function testGetLongVersion()
{
$this->assertStringNotContainsString('string', $this->version->getLongVersion());
$this->assertIsString($this->version->getLongVersion());
}

/**
Expand Down

0 comments on commit 3a9d77a

Please sign in to comment.