Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion shippable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,10 @@ script:

archive: true


parallelized_test: true

notifications:
email:
- [email protected]


2 changes: 1 addition & 1 deletion tests/calculator_test.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
}
?>