Skip to content

Commit 3ca95c6

Browse files
committed
took away comment on line 30
1 parent 43d650c commit 3ca95c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sprint-3/1-implement-and-rewrite-tests/implement/2-is-proper-fraction.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ function isProperFraction(numerator, denominator) {
2727

2828
// The line below allows us to load the isProperFraction function into tests in other files.
2929
// This will be useful in the "rewrite tests with jest" step.
30-
//module.exports = isProperFraction;
30+
module.exports = isProperFraction;
3131

3232
// here's our helper again
3333
function assertEquals(actualOutput, targetOutput) {

0 commit comments

Comments
 (0)