Disallow named test decls with duplicate names

This commit is contained in:
Dominic
2023-05-08 17:59:06 +10:00
committed by GitHub
parent bac3a28214
commit 5a3eca5d4c
15 changed files with 163 additions and 130 deletions

View File

@@ -203,7 +203,7 @@ test "multiline string comments at multiple places" {
try expect(mem.eql(u8, s1, s2));
}
test "string concatenation" {
test "string concatenation simple" {
try expect(mem.eql(u8, "OK" ++ " IT " ++ "WORKED", "OK IT WORKED"));
}