diff options
| author | Dominic <4678790+dweiller@users.noreply.github.com> | 2023-05-08 17:59:06 +1000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-05-08 10:59:06 +0300 |
| commit | 5a3eca5d4ca42f92abe60040e21ffd8e307d8466 (patch) | |
| tree | a69d1c9ccff1feeb63f6117658695703f682ccd4 /test/behavior/basic.zig | |
| parent | bac3a28214d07f761e25fcc12a6708f70c8ccc01 (diff) | |
| download | zig-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.zig | 2 |
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")); } |
