From cf178e1648c41c3420e6fe5492352c1e6be145b4 Mon Sep 17 00:00:00 2001 From: csharp Date: Tue, 23 Sep 2014 13:46:41 +0530 Subject: [PATCH 1/3] Update shippable.yml --- shippable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shippable.yml b/shippable.yml index e7ab41d..2e103cb 100644 --- a/shippable.yml +++ b/shippable.yml @@ -16,5 +16,5 @@ script: archive: true - +parallelized_test: true From f490ba3f253869c2a8350d0e0c4f3dae2933003c Mon Sep 17 00:00:00 2001 From: csharp Date: Tue, 23 Sep 2014 13:51:56 +0530 Subject: [PATCH 2/3] Update shippable.yml --- shippable.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/shippable.yml b/shippable.yml index 2e103cb..80851ab 100644 --- a/shippable.yml +++ b/shippable.yml @@ -18,3 +18,8 @@ archive: true parallelized_test: true +notifications: + email: + - buildsampletest@gmail.com + + From 3c67ea432481b03aa6a4a60d594e79faa3718404 Mon Sep 17 00:00:00 2001 From: csharp Date: Tue, 23 Sep 2014 13:54:10 +0530 Subject: [PATCH 3/3] Update calculator_test.php --- tests/calculator_test.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/calculator_test.php b/tests/calculator_test.php index 52f3c96..fdcd534 100644 --- a/tests/calculator_test.php +++ b/tests/calculator_test.php @@ -35,7 +35,7 @@ public function testMultiply(){ public function testDivide(){ $calc = new Calculator(); $quotient = $calc->divide(10,2); - $this->assertEquals(4, $quotient); //check if 10/2 is equal to 5 + $this->assertEquals(5, $quotient); //check if 10/2 is equal to 5 } } ?>