Skip to content

Commit

Permalink
fix build (caused by changes to latest Zig?)
Browse files Browse the repository at this point in the history
  • Loading branch information
karlseguin committed Nov 9, 2024
1 parent a2014e9 commit ae32258
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
2 changes: 1 addition & 1 deletion src/t.zig
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ pub const Context = struct {
pub fn fakeReader(self: *Context) FakeReader {
std.debug.assert(self.fake);

const fr = .{
const fr = FakeReader{
.pos = self.to_read_pos,
.buf = self.to_read.items,
.random = self.random(),
Expand Down
4 changes: 0 additions & 4 deletions test_runner.zig
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,6 @@
// .root_source_file = b.path("src/main.zig"),
// });

pub const std_options = .{ .log_scope_levels = &[_]std.log.ScopeLevel{
.{ .scope = .websocket, .level = .err },
} };

const std = @import("std");
const builtin = @import("builtin");

Expand Down

0 comments on commit ae32258

Please sign in to comment.