Skip to content

Commit

Permalink
Fix compile time issue with reqwest client test
Browse files Browse the repository at this point in the history
  • Loading branch information
blazzy committed Jul 19, 2024
1 parent 7ee4bca commit ddb330c
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ fn test_types() {
double: 45.56,
string: String::from("something"),
boolean: true,
uuid: Uuid::new_v4()
uuid: Uuid::new_v4(),
bytes: Vec::new(),
};
assert_eq!(type_of(tt.int32), "i32");
assert_eq!(type_of(tt.int64), "i64");
Expand Down

0 comments on commit ddb330c

Please sign in to comment.