aboutsummaryrefslogtreecommitdiff
path: root/test/behavior/basic.zig
diff options
context:
space:
mode:
authorDominic <4678790+dweiller@users.noreply.github.com>2023-05-08 17:59:06 +1000
committerGitHub <noreply@github.com>2023-05-08 10:59:06 +0300
commit5a3eca5d4ca42f92abe60040e21ffd8e307d8466 (patch)
treea69d1c9ccff1feeb63f6117658695703f682ccd4 /test/behavior/basic.zig
parentbac3a28214d07f761e25fcc12a6708f70c8ccc01 (diff)
downloadzig-5a3eca5d4ca42f92abe60040e21ffd8e307d8466.tar.gz
zig-5a3eca5d4ca42f92abe60040e21ffd8e307d8466.zip
Disallow named test decls with duplicate names
Diffstat (limited to 'test/behavior/basic.zig')
-rw-r--r--test/behavior/basic.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/behavior/basic.zig b/test/behavior/basic.zig
index 6fdd309371..8727d0dd41 100644
--- a/test/behavior/basic.zig
+++ b/test/behavior/basic.zig
@@ -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"));
}