mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-26 21:39:07 +00:00
test_gen: fix type annotation on character_literal tests
This commit is contained in:
parent
c85fd96ef6
commit
6cc270241e
1 changed files with 4 additions and 4 deletions
|
@ -368,7 +368,7 @@ fn character_literal() {
|
||||||
"#
|
"#
|
||||||
),
|
),
|
||||||
65,
|
65,
|
||||||
u32
|
i64
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -383,7 +383,7 @@ fn character_literal_back_slash() {
|
||||||
"#
|
"#
|
||||||
),
|
),
|
||||||
92,
|
92,
|
||||||
u32
|
i64
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -398,7 +398,7 @@ fn character_literal_single_quote() {
|
||||||
"#
|
"#
|
||||||
),
|
),
|
||||||
39,
|
39,
|
||||||
u32
|
i64
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -413,7 +413,7 @@ fn character_literal_new_line() {
|
||||||
"#
|
"#
|
||||||
),
|
),
|
||||||
10,
|
10,
|
||||||
u32
|
i64
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue