std.zon.parse: Fix typo in test "std.zon parse bool"

Replace "Correct floats" with "Correct bools".
This commit is contained in:
Manlio Perillo
2025-04-09 08:46:13 +02:00
committed by Alex Rønne Petersen
parent 4fc783670a
commit f4e3631655

View File

@@ -2380,7 +2380,7 @@ test "std.zon enum literals" {
test "std.zon parse bool" {
const gpa = std.testing.allocator;
// Correct floats
// Correct bools
try std.testing.expectEqual(true, try fromSlice(bool, gpa, "true", null, .{}));
try std.testing.expectEqual(false, try fromSlice(bool, gpa, "false", null, .{}));