aboutsummaryrefslogtreecommitdiff
path: root/lib/std/std.zig
diff options
context:
space:
mode:
authorLemonBoy <thatlemon@gmail.com>2021-01-22 15:45:28 +0100
committerLemonBoy <thatlemon@gmail.com>2021-01-22 15:46:58 +0100
commit134f5fd3d690cfdce2ab7d622cb233b3e510bf3a (patch)
treee841be427472bffae23efd649212a6e4e0cac8bd /lib/std/std.zig
parentac004e1bf13d00804c30f55d479b554774798307 (diff)
downloadzig-134f5fd3d690cfdce2ab7d622cb233b3e510bf3a.tar.gz
zig-134f5fd3d690cfdce2ab7d622cb233b3e510bf3a.zip
std: Update `test ""` to `test` where it makes sense
Diffstat (limited to 'lib/std/std.zig')
-rw-r--r--lib/std/std.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/std.zig b/lib/std/std.zig
index d085d4fc41..780579debf 100644
--- a/lib/std/std.zig
+++ b/lib/std/std.zig
@@ -86,7 +86,7 @@ comptime {
_ = start;
}
-test "" {
+test {
if (builtin.os.tag == .windows) {
// We only test the Windows-relevant stuff to save memory because the CI
// server is hitting OOM. TODO revert this after stage2 arrives.