darenwkt commented on code in PR #203: URL: https://github.com/apache/flink-connector-aws/pull/203#discussion_r2067097654
########## flink-connector-aws/flink-connector-dynamodb/src/test/java/org/apache/flink/connector/dynamodb/table/RowDataToAttributeValueConverterTest.java: ########## @@ -216,7 +216,7 @@ void testFloat() { Map<String, AttributeValue> actualResult = rowDataToAttributeValueConverter.convertRowData(createElement(value)); Map<String, AttributeValue> expectedResult = - singletonMap(key, AttributeValue.builder().n("1.23456791E17").build()); + singletonMap(key, AttributeValue.builder().n("1.2345679E17").build()); Review Comment: Thanks @gguptp I have revisited this and found that I was running the test with java21 locally, once I changed it to java8, the test passed. As such I have reverted changes to this test case. Please take another look -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@flink.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org