Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
Signed-off-by: xxchan <[email protected]>
  • Loading branch information
xxchan committed Jul 2, 2024
1 parent 7e37308 commit e2e7e9e
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions src/connector/codec/tests/integration_tests/avro.rs
Original file line number Diff line number Diff line change
Expand Up @@ -218,17 +218,17 @@ fn test_simple() {
bytes(#11): Bytea,
]"#]],
expect![[r#"
Owned(Some(Int32(32)))
Owned(Some(Int64(64)))
Borrowed(Some(Utf8("str_value")))
Owned(Some(Float32(OrderedFloat(32.0))))
Owned(Some(Float64(OrderedFloat(64.0))))
Owned(Some(Bool(true)))
Owned(Some(Date(Date(1970-01-01))))
Owned(Some(Timestamptz(Timestamptz(0))))
Owned(Some(Timestamptz(Timestamptz(0))))
Owned(Some(Interval(Interval { months: 1, days: 1, usecs: 1000000 })))
Borrowed(Some(Bytea([1, 2, 3, 4, 5])))"#]],
Owned(Int32(32))
Owned(Int64(64))
Borrowed(Utf8("str_value"))
Owned(Float32(OrderedFloat(32.0)))
Owned(Float64(OrderedFloat(64.0)))
Owned(Bool(true))
Owned(Date(Date(1970-01-01)))
Owned(Timestamptz(Timestamptz(0)))
Owned(Timestamptz(Timestamptz(0)))
Owned(Interval(Interval { months: 1, days: 1, usecs: 1000000 }))
Borrowed(Bytea([1, 2, 3, 4, 5]))"#]],
)
}

Expand Down

0 comments on commit e2e7e9e

Please sign in to comment.