Skip to content

Commit 463d977

Browse files
committed
correcting files for this work
1 parent 2128351 commit 463d977

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Sprint-3/1-implement-and-rewrite-tests/implement/1-get-angle-type.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,6 @@ function assertEquals(actualOutput, targetOutput) {
3232
}
3333

3434
// TODO: Write tests to cover all cases, including boundary and invalid cases.
35-
// Example: Identify Right Angles.
35+
// Example: Identify Right Angles
3636
const right = getAngleType(90);
3737
assertEquals(right, "Right angle");

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
@@ -29,5 +29,5 @@ function assertEquals(actualOutput, targetOutput) {
2929
// TODO: Write tests to cover all cases.
3030
// What combinations of numerators and denominators should you test?
3131

32-
// Example: 1/2 is a proper fraction.
32+
// Example: 1/2 is a proper fraction
3333
assertEquals(isProperFraction(1, 2), true);

Sprint-3/1-implement-and-rewrite-tests/implement/3-get-card-value.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ assertEquals(getCardValue("9♠"), 9);
4545
try {
4646
getCardValue("invalid");
4747

48-
// This line will not be reached if an error is thrown as expected.
48+
// This line will not be reached if an error is thrown as expected
4949
console.error("Error was not thrown for invalid card");
5050
} catch (e) {}
5151

0 commit comments

Comments
 (0)