Skip to content

Commit

Permalink
test(failures): Test action failures
Browse files Browse the repository at this point in the history
  • Loading branch information
WidgetsBurritos committed Jan 4, 2019
1 parent 9542676 commit e89a54b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/DrupalPatchChecker.php
Expand Up @@ -10,7 +10,8 @@
/**
* Checks to see if patches contain hook_update_N().
*/
class DrupalPatchChecker implements PluginInterface {
class DrupalPatchChecker implements PluginInterface
{

protected $composer;

Expand Down
2 changes: 1 addition & 1 deletion tests/DrupalPatchCheckerUnitTest.php
Expand Up @@ -26,7 +26,7 @@ public function testCheckPatchFileArrayForHookUpdateNreturnsCorrectLines() {
$expected = [
'myfile.patch contains hook_update_N() on Line 2.',
'myfile.patch contains hook_update_N() on Line 3.',
'myfile.patch contains hook_update_N() on Line 4.',
'myfile.patch contains hook_update_N() on Line 6.',
];
$this->assertEquals($expected, $actual);
}
Expand Down

0 comments on commit e89a54b

Please sign in to comment.