From fc38cc60082ee565a5acf67d372d0a87a45b76b0 Mon Sep 17 00:00:00 2001 From: "Glenn Y. Rolland" Date: Sun, 29 Dec 2024 21:10:07 +0100 Subject: [PATCH] fix: breadcrump test was failing due to an oversight --- spec/utils/breadcrumbs_spec.cr | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spec/utils/breadcrumbs_spec.cr b/spec/utils/breadcrumbs_spec.cr index deec943..1d97594 100644 --- a/spec/utils/breadcrumbs_spec.cr +++ b/spec/utils/breadcrumbs_spec.cr @@ -37,10 +37,10 @@ describe GX::Utils::BreadCrumbs do b1.to_s.should eq("") b2 = b1 + "test1" - b2.to_a.should eq("test1") + b2.to_s.should eq("test1") b3 = b2 + "test2" - b3.to_a.should eq("test1 test2") + b3.to_s.should eq("test1 test2") end end end