This is an automated email from the ASF dual-hosted git repository.
danhaywood pushed a commit to branch maintenance-branch
in repository https://gitbox.apache.org/repos/asf/causeway.git
The following commit(s) were added to refs/heads/maintenance-branch by this
push:
new 51ac4b6c39 CAUSEWAY-3803: fixes unit test
new 9b9c3a41bd Merge branch 'CAUSEWAY-3803' into maintenance-branch
51ac4b6c39 is described below
commit 51ac4b6c390a294df08400bfa343cdb3f260a9fc
Author: Dan Haywood <[email protected]>
AuthorDate: Wed Jul 10 22:16:45 2024 +0100
CAUSEWAY-3803: fixes unit test
---
.../ui/test/components/scalars/jdkmath/BigDecimalConverterTest.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/viewers/wicket/ui-test/src/test/java/org/apache/causeway/viewer/wicket/ui/test/components/scalars/jdkmath/BigDecimalConverterTest.java
b/viewers/wicket/ui-test/src/test/java/org/apache/causeway/viewer/wicket/ui/test/components/scalars/jdkmath/BigDecimalConverterTest.java
index 715b926a78..f6edf9e0b6 100644
---
a/viewers/wicket/ui-test/src/test/java/org/apache/causeway/viewer/wicket/ui/test/components/scalars/jdkmath/BigDecimalConverterTest.java
+++
b/viewers/wicket/ui-test/src/test/java/org/apache/causeway/viewer/wicket/ui/test/components/scalars/jdkmath/BigDecimalConverterTest.java
@@ -102,7 +102,7 @@ class BigDecimalConverterTest {
@Test
void scale2_english_withoutThousandSeparators() {
converterTester.setScenario(Locale.ENGLISH,
newConverter(CustomerScale2.class));
- converterTester.assertRoundtrip(bd_789123_45_scale2, "789123.45");
+ converterTester.assertRoundtrip(bd_789123_45_scale2, "789123.45",
"789,123.45");
}
@Test