From 49d9ce76a5f8afe66241e9f6cda591d49e6917a2 Mon Sep 17 00:00:00 2001 From: Ryan Forsyth Date: Thu, 3 Aug 2017 11:21:22 -0700 Subject: [PATCH] Break the code Test the tests. --- calculator/calculator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/calculator/calculator.py b/calculator/calculator.py index 0f4f181..c2a7237 100644 --- a/calculator/calculator.py +++ b/calculator/calculator.py @@ -2,7 +2,7 @@ def add(x, y): return x + y def subtract(x, y): - return x - y + return x + y def multiply(x, y): return x * y