From 16b3d1004ee520341839305826fe065eb5d8c818 Mon Sep 17 00:00:00 2001 From: Ryan Liptak Date: Sun, 25 Feb 2024 23:31:53 -0800 Subject: Remove redundant test name prefixes now that test names are fully qualified Follow up to #19079, which made test names fully qualified. This fixes tests that now-redundant information in their test names. For example here's a fully qualified test name before the changes in this commit: "priority_queue.test.std.PriorityQueue: shrinkAndFree" and the same test's name after the changes in this commit: "priority_queue.test.shrinkAndFree" --- lib/std/Thread/RwLock.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/std/Thread/RwLock.zig') diff --git a/lib/std/Thread/RwLock.zig b/lib/std/Thread/RwLock.zig index e0923c40ad..80207dee00 100644 --- a/lib/std/Thread/RwLock.zig +++ b/lib/std/Thread/RwLock.zig @@ -264,7 +264,7 @@ test "DefaultRwLock - internal state" { try testing.expectEqual(rwl, DefaultRwLock{}); } -test "RwLock - smoke test" { +test "smoke test" { var rwl = RwLock{}; rwl.lock(); @@ -293,7 +293,7 @@ test "RwLock - smoke test" { rwl.unlock(); } -test "RwLock - concurrent access" { +test "concurrent access" { if (builtin.single_threaded) return; -- cgit v1.2.3