aboutsummaryrefslogtreecommitdiff
path: root/lib/std/atomic/bool.zig
diff options
context:
space:
mode:
Diffstat (limited to 'lib/std/atomic/bool.zig')
-rw-r--r--lib/std/atomic/bool.zig8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/std/atomic/bool.zig b/lib/std/atomic/bool.zig
index 0cffb99d38..1c6ac8d046 100644
--- a/lib/std/atomic/bool.zig
+++ b/lib/std/atomic/bool.zig
@@ -47,9 +47,9 @@ pub const Bool = extern struct {
test "std.atomic.Bool" {
var a = Bool.init(false);
- testing.expectEqual(false, a.xchg(false, .SeqCst));
- testing.expectEqual(false, a.load(.SeqCst));
+ try testing.expectEqual(false, a.xchg(false, .SeqCst));
+ try testing.expectEqual(false, a.load(.SeqCst));
a.store(true, .SeqCst);
- testing.expectEqual(true, a.xchg(false, .SeqCst));
- testing.expectEqual(false, a.load(.SeqCst));
+ try testing.expectEqual(true, a.xchg(false, .SeqCst));
+ try testing.expectEqual(false, a.load(.SeqCst));
}