You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@opendal.apache.org by xu...@apache.org on 2023/03/16 07:42:19 UTC

[incubator-opendal] 01/01: fix: Test assert_size is not updated

This is an automated email from the ASF dual-hosted git repository.

xuanwo pushed a commit to branch fix-unit-test
in repository https://gitbox.apache.org/repos/asf/incubator-opendal.git

commit fc6df03f954d4642318294c016b8bbf467425f4d
Author: Xuanwo <gi...@xuanwo.io>
AuthorDate: Thu Mar 16 15:42:01 2023 +0800

    fix: Test assert_size is not updated
    
    Signed-off-by: Xuanwo <gi...@xuanwo.io>
---
 src/lib.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/lib.rs b/src/lib.rs
index a4bd46fc..b5df5aea 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -89,7 +89,7 @@ mod tests {
     /// unexpected struct/enum size change.
     #[test]
     fn assert_size() {
-        assert_eq!(88, size_of::<AccessorInfo>());
+        assert_eq!(104, size_of::<AccessorInfo>());
         assert_eq!(24, size_of::<Operator>());
         assert_eq!(216, size_of::<Entry>());
         assert_eq!(192, size_of::<Metadata>());