Fix test that was named Str.append

This commit is contained in:
Chad Stearns 2020-08-19 01:59:47 -04:00
parent e71e33c34e
commit a99adb9cdb

View file

@ -2416,9 +2416,9 @@ mod solve_uniq_expr {
} }
#[test] #[test]
fn str_append() { fn str_concat() {
infer_eq( infer_eq(
"Str.append", "Str.concat",
"Attr * (Attr * Str, Attr * Str -> Attr * Str)", "Attr * (Attr * Str, Attr * Str -> Attr * Str)",
); );
} }