Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
Fix whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed Apr 27, 2014
1 parent 4899704 commit 96b0509
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/template/IncompleteTestMethod.tpl.dist
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
'This test has not been implemented yet.'
);
}
4 changes: 2 additions & 2 deletions src/template/TestMethod.tpl.dist
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
public function test{methodName}()
{
$this->assert{assertion}(
{expected},
$this->object->{origMethodName}({arguments})
{expected},
$this->object->{origMethodName}({arguments})
);
}
2 changes: 1 addition & 1 deletion src/template/TestMethodBool.tpl.dist
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
public function test{methodName}()
{
$this->assert{assertion}(
$this->object->{origMethodName}({arguments})
$this->object->{origMethodName}({arguments})
);
}
2 changes: 1 addition & 1 deletion src/template/TestMethodBoolStatic.tpl.dist
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
public function test{methodName}()
{
$this->assert{assertion}(
{className}::{origMethodName}({arguments})
{className}::{origMethodName}({arguments})
);
}
4 changes: 2 additions & 2 deletions src/template/TestMethodStatic.tpl.dist
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
public function test{methodName}()
{
$this->assert{assertion}(
{expected},
{className}::{origMethodName}({arguments})
{expected},
{className}::{origMethodName}({arguments})
);
}

0 comments on commit 96b0509

Please sign in to comment.