From 12700e1666af6d2e17edfaeefe42c6b20c7683da Mon Sep 17 00:00:00 2001 From: Fagner Brack Date: Sat, 22 Sep 2018 08:37:20 +1000 Subject: [PATCH] :white_check_mark: Set interest to pay variable to 0 --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 92be7a5..d2d1723 100644 --- a/index.html +++ b/index.html @@ -7,7 +7,7 @@ } QUnit.test('$1 Loan Amount', (assert) => { - const interestToPay = undefined; + const interestToPay = 0; strictEqual({ expected: 0, actual: interestToPay }, assert); }); \ No newline at end of file