From 0915b6cc26305645ec09782ae2a54b95ceba8e97 Mon Sep 17 00:00:00 2001
From: Michiel Cottaar <MichielCottaar@protonmail.com>
Date: Wed, 29 May 2024 14:46:06 +0100
Subject: [PATCH] Allow small absolute deviations in duration

---
 src/plot.jl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/plot.jl b/src/plot.jl
index c50c0d9..f189574 100644
--- a/src/plot.jl
+++ b/src/plot.jl
@@ -104,7 +104,7 @@ end
 
 function SequenceDiagram(actual_duration; kwargs...)
     durations = duration_line.([values(kwargs)...])
-    @assert all(isapprox.(actual_duration, durations, rtol=1e-3))
+    @assert all(isapprox.(actual_duration, durations, rtol=1e-3, atol=1e-6))
     res = SinglePlotLine[]
     for symbol in (:RFx, :RFy, :G, :Gx, :Gy, :Gz, :ADC)
         push!(res, get(kwargs, symbol, SinglePlotLine(actual_duration)))
-- 
GitLab