From c95091e5a50f0bfa120a83292ee546b8c3e11910 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Sat, 25 Jul 2020 23:33:15 -0700 Subject: run zig fmt on std.testing --- lib/std/testing.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/std/testing.zig') diff --git a/lib/std/testing.zig b/lib/std/testing.zig index 423f537f74..8f16b50cd2 100644 --- a/lib/std/testing.zig +++ b/lib/std/testing.zig @@ -175,7 +175,7 @@ test "expectEqual.union(enum)" { /// within the margin of the expected value, /// prints diagnostics to stderr to show exactly how they are not equal, then aborts. /// The types must be floating point -pub fn expectWithinMargin(expected: var, actual: @TypeOf(expected), margin: @TypeOf(expected)) void { +pub fn expectWithinMargin(expected: anytype, actual: @TypeOf(expected), margin: @TypeOf(expected)) void { std.debug.assert(margin >= 0.0); switch (@typeInfo(@TypeOf(actual))) { @@ -201,7 +201,7 @@ test "expectWithinMargin.f32" { /// within the epsilon of the expected value, /// prints diagnostics to stderr to show exactly how they are not equal, then aborts. /// The types must be floating point -pub fn expectWithinEpsilon(expected: var, actual: @TypeOf(expected), epsilon: @TypeOf(expected)) void { +pub fn expectWithinEpsilon(expected: anytype, actual: @TypeOf(expected), epsilon: @TypeOf(expected)) void { std.debug.assert(epsilon >= 0.0 and epsilon <= 1.0); const margin = epsilon * expected; -- cgit v1.2.3