Skip to content

Commit 7c1ce41

Browse files
committed
style(test): remove trailing whitespace
- Remove trailing space in timestamp test - Improve formatting consistency
1 parent 9ad5eb9 commit 7c1ce41

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2033,7 +2033,7 @@ test "timestamp now() function" {
20332033

20342034
// Test toFloat conversion
20352035
const float_val = now_ts.toFloat();
2036-
const expected_float = @as(f64, @floatFromInt(now_ts.seconds)) +
2036+
const expected_float = @as(f64, @floatFromInt(now_ts.seconds)) +
20372037
@as(f64, @floatFromInt(now_ts.nanoseconds)) / 1_000_000_000.0;
20382038
try expect(@abs(float_val - expected_float) < 0.000000001);
20392039

0 commit comments

Comments
 (0)