From c541a2556d45f653727f6c555866e267e003e4d5 Mon Sep 17 00:00:00 2001 From: Glenn Date: Sun, 13 Oct 2024 15:03:09 +0200 Subject: [PATCH] fix: breadcrumb spec for string conversion --- 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