From ce50f6f334e044e265bd5eedd5c8f3e5bcd8b26f Mon Sep 17 00:00:00 2001 From: Philippe PITTOLI Date: Wed, 22 May 2024 03:57:35 +0200 Subject: [PATCH] test-ships: changes in Tags taken into account. --- spec/test-ships.cr | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spec/test-ships.cr b/spec/test-ships.cr index 9a82c6d..fa1f359 100644 --- a/spec/test-ships.cr +++ b/spec/test-ships.cr @@ -280,7 +280,7 @@ describe "DODB::DataBase" do .should be_true # There shouldn’t be one in our data about WWII Japanese warships… - db_ships_by_tags.get?("starship").should be_nil + db_ships_by_tags.get?("starship").should eq([] of Ship) db.rm_storage_dir end @@ -800,7 +800,7 @@ describe "DODB::CachedDataBase" do .should be_true # There shouldn’t be one in our data about WWII Japanese warships… - db_ships_by_tags.get?("starship").should be_nil + db_ships_by_tags.get?("starship").should eq([] of Ship) db.rm_storage_dir end