You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@avro.apache.org by mg...@apache.org on 2022/04/18 22:13:32 UTC

[avro] branch avro-3495-fields-order-should-not-matter updated: AVRO-3495: Update the test case

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

mgrigorov pushed a commit to branch avro-3495-fields-order-should-not-matter
in repository https://gitbox.apache.org/repos/asf/avro.git


The following commit(s) were added to refs/heads/avro-3495-fields-order-should-not-matter by this push:
     new 91c57ab24 AVRO-3495: Update the test case
91c57ab24 is described below

commit 91c57ab24891bf9c4073fb80be94ec7dcd9f3641
Author: Martin Tzvetanov Grigorov <mg...@apache.org>
AuthorDate: Tue Apr 19 01:12:53 2022 +0300

    AVRO-3495: Update the test case
    
    Signed-off-by: Martin Tzvetanov Grigorov <mg...@apache.org>
---
 lang/rust/avro/tests/schema.rs | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lang/rust/avro/tests/schema.rs b/lang/rust/avro/tests/schema.rs
index 33f62893c..62eeb2ddf 100644
--- a/lang/rust/avro/tests/schema.rs
+++ b/lang/rust/avro/tests/schema.rs
@@ -1313,6 +1313,7 @@ fn test_decimal_valid_type_attributes() {
 }
 */
 
+// https://github.com/flavray/avro-rs/issues/47
 #[test]
 fn avro_old_issue_47() {
     init();
@@ -1340,6 +1341,5 @@ fn avro_old_issue_47() {
         a: 1,
     };
 
-    let res = to_avro_datum(&schema, to_value(record).unwrap()).unwrap();
-    dbg!(res);
+    let _ = to_avro_datum(&schema, to_value(record).unwrap()).unwrap();
 }