Skip to content

Commit

Permalink
update duration check
Browse files Browse the repository at this point in the history
  • Loading branch information
frostbyte73 committed Jul 25, 2023
1 parent f438c97 commit 92867f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/ffprobe.go
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ func verify(t *testing.T, in string, p *config.PipelineConfig, res *livekit.Egre
actual, err := strconv.ParseFloat(info.Format.Duration, 64)
require.NoError(t, err)

require.InDelta(t, expected, actual, 1)
require.InDelta(t, expected, actual, 4.1)
}

// check stream info
Expand Down

0 comments on commit 92867f7

Please sign in to comment.