From 96b05093b9328dc56d16cc9b13e6af332684f3b2 Mon Sep 17 00:00:00 2001 From: Sebastian Bergmann Date: Sun, 27 Apr 2014 19:39:43 +0200 Subject: [PATCH] Fix whitespace --- src/template/IncompleteTestMethod.tpl.dist | 2 +- src/template/TestMethod.tpl.dist | 4 ++-- src/template/TestMethodBool.tpl.dist | 2 +- src/template/TestMethodBoolStatic.tpl.dist | 2 +- src/template/TestMethodStatic.tpl.dist | 4 ++-- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/template/IncompleteTestMethod.tpl.dist b/src/template/IncompleteTestMethod.tpl.dist index 5b199d5..bfe9136 100644 --- a/src/template/IncompleteTestMethod.tpl.dist +++ b/src/template/IncompleteTestMethod.tpl.dist @@ -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.' ); } diff --git a/src/template/TestMethod.tpl.dist b/src/template/TestMethod.tpl.dist index 2a56520..6fbeda1 100644 --- a/src/template/TestMethod.tpl.dist +++ b/src/template/TestMethod.tpl.dist @@ -7,7 +7,7 @@ public function test{methodName}() { $this->assert{assertion}( - {expected}, - $this->object->{origMethodName}({arguments}) + {expected}, + $this->object->{origMethodName}({arguments}) ); } diff --git a/src/template/TestMethodBool.tpl.dist b/src/template/TestMethodBool.tpl.dist index 58c5f4c..b700bf5 100644 --- a/src/template/TestMethodBool.tpl.dist +++ b/src/template/TestMethodBool.tpl.dist @@ -7,6 +7,6 @@ public function test{methodName}() { $this->assert{assertion}( - $this->object->{origMethodName}({arguments}) + $this->object->{origMethodName}({arguments}) ); } diff --git a/src/template/TestMethodBoolStatic.tpl.dist b/src/template/TestMethodBoolStatic.tpl.dist index ae89ae3..eab521c 100644 --- a/src/template/TestMethodBoolStatic.tpl.dist +++ b/src/template/TestMethodBoolStatic.tpl.dist @@ -7,6 +7,6 @@ public function test{methodName}() { $this->assert{assertion}( - {className}::{origMethodName}({arguments}) + {className}::{origMethodName}({arguments}) ); } diff --git a/src/template/TestMethodStatic.tpl.dist b/src/template/TestMethodStatic.tpl.dist index 6caa0f5..fde1b2e 100644 --- a/src/template/TestMethodStatic.tpl.dist +++ b/src/template/TestMethodStatic.tpl.dist @@ -7,7 +7,7 @@ public function test{methodName}() { $this->assert{assertion}( - {expected}, - {className}::{origMethodName}({arguments}) + {expected}, + {className}::{origMethodName}({arguments}) ); }