aboutsummaryrefslogtreecommitdiff
path: root/lib/std/Thread/RwLock.zig
diff options
context:
space:
mode:
Diffstat (limited to 'lib/std/Thread/RwLock.zig')
-rw-r--r--lib/std/Thread/RwLock.zig4
1 files changed, 2 insertions, 2 deletions
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;