Navigation Menu

Skip to content

Commit

Permalink
Don't statically call an instance method.
Browse files Browse the repository at this point in the history
  • Loading branch information
ADmad committed Dec 14, 2016
1 parent 04a0d57 commit 8c72dec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/TestSuite/TestCase.php
Expand Up @@ -324,7 +324,7 @@ public function assertTags($string, $expected, $fullDebug = false)
'assertTags() is deprecated, use assertHtml() instead.',
E_USER_DEPRECATED
);
static::assertHtml($expected, $string, $fullDebug);
$this->assertHtml($expected, $string, $fullDebug);
}

/**
Expand Down

0 comments on commit 8c72dec

Please sign in to comment.