This is an automated email from the ASF dual-hosted git repository.
jbonofre pushed a commit to branch 0.9.x
in repository https://gitbox.apache.org/repos/asf/polaris.git
The following commit(s) were added to refs/heads/0.9.x by this push:
new 37936f51 Fix TestPolarisVersion
37936f51 is described below
commit 37936f5157b37b8b7db2b8b1ebb86d9d067a353e
Author: JB Onofré <[email protected]>
AuthorDate: Wed Jan 22 08:35:40 2025 +0100
Fix TestPolarisVersion
---
.../src/jarTest/java/org/apache/polaris/version/TestPolarisVersion.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/tools/version/src/jarTest/java/org/apache/polaris/version/TestPolarisVersion.java
b/tools/version/src/jarTest/java/org/apache/polaris/version/TestPolarisVersion.java
index a2c3928d..c852b815 100644
---
a/tools/version/src/jarTest/java/org/apache/polaris/version/TestPolarisVersion.java
+++
b/tools/version/src/jarTest/java/org/apache/polaris/version/TestPolarisVersion.java
@@ -107,7 +107,7 @@ public class TestPolarisVersion {
static Stream<Arguments> noticeLicense() {
return Stream.of(
Arguments.arguments("NOTICE", (Supplier<String>)
PolarisVersion::readNoticeFile),
- Arguments.arguments("LICENSE", (Supplier<String>)
PolarisVersion::readSourceLicenseFile),
+ Arguments.arguments("LICENSE", (Supplier<String>)
PolarisVersion::readSourceLicenseFile));
// Arguments.arguments(
// "LICENSE-BINARY-DIST", (Supplier<String>)
PolarisVersion::readBinaryLicenseFile));
}