image: remove expectEqual check (caused problems for rotate)
This commit is contained in:
parent
c57c40db61
commit
46d576fc13
1 changed files with 1 additions and 1 deletions
|
@ -255,7 +255,7 @@ pub const Image = struct {
|
||||||
var in_fmt = mkSfInfo();
|
var in_fmt = mkSfInfo();
|
||||||
|
|
||||||
self.sndfile = try sopen(self.allocator, path, c.SFM_READ, &in_fmt);
|
self.sndfile = try sopen(self.allocator, path, c.SFM_READ, &in_fmt);
|
||||||
std.testing.expectEqual(self.frames, @intCast(usize, in_fmt.frames));
|
// std.testing.expectEqual(self.frames, @intCast(usize, in_fmt.frames));
|
||||||
|
|
||||||
self.curpath = path;
|
self.curpath = path;
|
||||||
self.frames = @intCast(usize, in_fmt.frames);
|
self.frames = @intCast(usize, in_fmt.frames);
|
||||||
|
|
Loading…
Reference in a new issue