Skip to content

Commit b7a71ea

Browse files
committed
Fix: DacValues: Test build failure
1 parent 4456e01 commit b7a71ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/DacValues/src/testmain.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ test "transform waveform" {
1616
const dac = Dac.new(6);
1717

1818
const data_in = [_]f64{ 0.0, 0.5, 1.0 };
19-
const data_out = try dac.transform_waveform(allocator, &data_in, 0.5);
19+
const data_out = try dac.transform_waveform(allocator, &data_in, false, 0.5);
2020
defer allocator.free(data_out);
2121

2222
try expect(data_out.len == data_in.len);

0 commit comments

Comments
 (0)