Skip to content

Commit 6acdf39

Browse files
comment fix
1 parent f313209 commit 6acdf39

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/Tests/ConvertTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@ public void NumberToWordsBG_ShouldReturnCorrectWords(decimal number, string expe
6969
}
7070

7171
[Theory]
72-
[InlineData(-1, "един лев")] // Assuming negative values are treated as zero
73-
[InlineData(-0.01, "една стотинка")] // Assuming negative values are treated as zero
72+
[InlineData(-1, "един лев")] // Assuming negative values are treated as positive
73+
[InlineData(-0.01, "една стотинка")] // Assuming negative values are treated as positive
7474
[InlineData(-32478.27, "тридесет и две хиляди четиристотин седемдесет и осем лева и 27 ст.")]
7575
public void NumberToWordsBG_ShouldReturnCorrectWordsForNegativeValues(decimal number, string expected)
7676
{

0 commit comments

Comments
 (0)