From 574d6551dc00d4096b0eb532f6f0a4727fd9bd9e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christoph=20H=C3=A4ni?= Date: Mon, 12 Oct 2020 10:16:56 +0200 Subject: [PATCH] Correct expected results of test --- t/output-filter-group-collection.t | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/t/output-filter-group-collection.t b/t/output-filter-group-collection.t index d90d9b7bd..51803acd6 100644 --- a/t/output-filter-group-collection.t +++ b/t/output-filter-group-collection.t @@ -52,9 +52,9 @@ given Agrammon::Outputs::FilterGroupCollection.from-scalar(0) { isa-ok $_, Agrammon::Outputs::FilterGroupCollection, 'Get another filter group back after adding scalar'; is +$group, 42, 'Original filter group is not changed in place'; - is +$_, 48, 'Total numeric value is correct after adding scalar'; + is +$_, 46, 'Total numeric value is correct after adding scalar'; is-deeply norm(.results-by-filter-group), - norm([{ac => 'blue cow'} => 39, { ac => 'pink cow' } => 9]), + norm([{ac => 'blue cow'} => 37, { ac => 'pink cow' } => 9]), 'Correct results by filter group after adding scalar'; } }