This is an automated email from the ASF dual-hosted git repository.
xushiyan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hudi.git
The following commit(s) were added to refs/heads/master by this push:
new 0a72458291 [HUDI-3551] Fix testStorageSchemes for oci storage (#5711)
0a72458291 is described below
commit 0a72458291ace85faec5155a2d7865b95f420b9b
Author: Raymond Xu <[email protected]>
AuthorDate: Sat May 28 12:13:37 2022 -0700
[HUDI-3551] Fix testStorageSchemes for oci storage (#5711)
---
.../src/test/java/org/apache/hudi/common/fs/TestStorageSchemes.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/hudi-common/src/test/java/org/apache/hudi/common/fs/TestStorageSchemes.java
b/hudi-common/src/test/java/org/apache/hudi/common/fs/TestStorageSchemes.java
index 80e64f8d77..85f3ce65ec 100644
---
a/hudi-common/src/test/java/org/apache/hudi/common/fs/TestStorageSchemes.java
+++
b/hudi-common/src/test/java/org/apache/hudi/common/fs/TestStorageSchemes.java
@@ -49,7 +49,7 @@ public class TestStorageSchemes {
assertFalse(StorageSchemes.isAppendSupported("bos"));
assertFalse(StorageSchemes.isAppendSupported("ks3"));
assertTrue(StorageSchemes.isAppendSupported("ofs"));
- assertTrue(StorageSchemes.isAppendSupported("oci"));
+ assertFalse(StorageSchemes.isAppendSupported("oci"));
assertThrows(IllegalArgumentException.class, () -> {
StorageSchemes.isAppendSupported("s2");
}, "Should throw exception for unsupported schemes");