Skip to content

Commit ee50c97

Browse files
Done the formatting as well
1 parent 5232176 commit ee50c97

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/java/com/thealgorithms/conversions/NumberToWords.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,4 +97,4 @@ private static String convertChunk(int number) {
9797

9898
return chunkWords;
9999
}
100-
}
100+
}

src/test/java/com/thealgorithms/conversions/NumberToWordsTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,4 +57,4 @@ void testEdgeCases() {
5757
assertEquals("Zero", NumberToWords.convert(new BigDecimal("-0.0")), "-0.0 should convert to 'Zero'");
5858
assertEquals("Zero Point Zero Zero Zero Zero Zero Zero One", NumberToWords.convert(new BigDecimal("1E-7")), "1E-7 should convert to 'Zero Point Zero Zero Zero Zero Zero Zero One'");
5959
}
60-
}
60+
}

0 commit comments

Comments
 (0)