Skip to content

Commit e4813e2

Browse files
authored
chore: fix ci (#69)
1 parent 0046471 commit e4813e2

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

crates/fluss/src/metadata/datatype.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1200,8 +1200,7 @@ fn test_map_display() {
12001200
let map_type = MapType::new(DataTypes::string(), DataTypes::int());
12011201
assert_eq!(map_type.to_string(), "MAP<STRING, INT>");
12021202

1203-
let map_type_non_null =
1204-
MapType::with_nullable(false, DataTypes::int(), DataTypes::string());
1203+
let map_type_non_null = MapType::with_nullable(false, DataTypes::int(), DataTypes::string());
12051204
assert_eq!(map_type_non_null.to_string(), "MAP<INT, STRING> NOT NULL");
12061205

12071206
let nested_map = MapType::new(

0 commit comments

Comments
 (0)