test_gen: fix type annotation on character_literal tests

This commit is contained in:
Brian Carroll 2022-12-12 08:50:37 +00:00
parent c85fd96ef6
commit 6cc270241e
No known key found for this signature in database
GPG key ID: 5C7B2EC4101703C0

View file

@ -368,7 +368,7 @@ fn character_literal() {
"#
),
65,
u32
i64
);
}
@ -383,7 +383,7 @@ fn character_literal_back_slash() {
"#
),
92,
u32
i64
);
}
@ -398,7 +398,7 @@ fn character_literal_single_quote() {
"#
),
39,
u32
i64
);
}
@ -413,7 +413,7 @@ fn character_literal_new_line() {
"#
),
10,
u32
i64
);
}