aboutsummaryrefslogtreecommitdiff
path: root/lib/std/Random/Pcg.zig
diff options
context:
space:
mode:
authorRyan Liptak <squeek502@hotmail.com>2024-02-25 23:31:53 -0800
committerRyan Liptak <squeek502@hotmail.com>2024-02-26 15:18:31 -0800
commit16b3d1004ee520341839305826fe065eb5d8c818 (patch)
treeeac514666f5f49e2d77b3aa82efaac901151bbee /lib/std/Random/Pcg.zig
parent1b79a42da096fcdeac22b56f17f82b0c7ec22a9b (diff)
downloadzig-16b3d1004ee520341839305826fe065eb5d8c818.tar.gz
zig-16b3d1004ee520341839305826fe065eb5d8c818.zip
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"
Diffstat (limited to 'lib/std/Random/Pcg.zig')
-rw-r--r--lib/std/Random/Pcg.zig4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/std/Random/Pcg.zig b/lib/std/Random/Pcg.zig
index 1ff65f0f44..a5f4ef7e41 100644
--- a/lib/std/Random/Pcg.zig
+++ b/lib/std/Random/Pcg.zig
@@ -72,7 +72,7 @@ pub fn fill(self: *Pcg, buf: []u8) void {
}
}
-test "pcg sequence" {
+test "sequence" {
var r = Pcg.init(0);
const s0: u64 = 0x9394bf54ce5d79de;
const s1: u64 = 0x84e9c579ef59bbf7;
@@ -92,7 +92,7 @@ test "pcg sequence" {
}
}
-test "pcg fill" {
+test "fill" {
var r = Pcg.init(0);
const s0: u64 = 0x9394bf54ce5d79de;
const s1: u64 = 0x84e9c579ef59bbf7;