From bfc3f53447125faf9729e2025bede3d40a7f3537 Mon Sep 17 00:00:00 2001 From: Jean Pierre Cimalando Date: Tue, 3 Mar 2020 16:12:31 +0100 Subject: [PATCH] Fix the bad header name in the curve test --- tests/PlotCurve.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/PlotCurve.cpp b/tests/PlotCurve.cpp index a69d4593..5ca42c28 100644 --- a/tests/PlotCurve.cpp +++ b/tests/PlotCurve.cpp @@ -45,7 +45,7 @@ public: void callback(absl::string_view header, const std::vector& members) override { - if (header == "effect") + if (header == "curve") curveSet.addCurveFromHeader(members); }