Skip to content

Commit fa465d8

Browse files
committed
fix(tests): correct decimal separator in WeatherDataTest
1 parent 150c032 commit fa465d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/com/weather/app/WeatherDataTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public void testToString() {
2626

2727
// Verify that the toString method contains all the required information
2828
assertTrue(result.contains("Berlin"));
29-
assertTrue(result.contains("20,3"));
29+
assertTrue(result.contains("20.3"));
3030
assertTrue(result.contains("Sunny"));
3131
}
3232

0 commit comments

Comments
 (0)