From 680b80bff922794a5109757fbd4dcc8edc66ca8f Mon Sep 17 00:00:00 2001
From: florian <f.spreckelsen@inidscale.com>
Date: Tue, 7 Sep 2021 16:03:57 +0200
Subject: [PATCH] FIX: Correct Boolean List comparison

---
 test/runtests.jl | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/test/runtests.jl b/test/runtests.jl
index a296add..18fe07f 100644
--- a/test/runtests.jl
+++ b/test/runtests.jl
@@ -257,7 +257,7 @@ using CaosDB
             CaosDB.Entity.set_value(ref_list_prop, ["some_id", "another_id"])
             @test CaosDB.Entity.get_value(int_list_prop) == [123, 456]
             @test CaosDB.Entity.get_value(double_list_prop) == [10.246, 3.14]
-            @test CaosDB.Entity.get_value(bool_list_prop) === [true, false]
+            @test CaosDB.Entity.get_value(bool_list_prop) == [true, false]
             @test CaosDB.Entity.get_value(string_list_prop) == ["Hello", "World"]
             @test CaosDB.Entity.get_value(ref_list_prop) == ["some_id", "another_id"]
             @test isa(CaosDB.Entity.get_value(int_list_prop), Vector{Clong})
@@ -339,7 +339,7 @@ using CaosDB
             CaosDB.Entity.set_value(ref_list_prop, ["some_id", "another_id"])
             @test CaosDB.Entity.get_value(int_list_prop) == [123, 456]
             @test CaosDB.Entity.get_value(double_list_prop) == [10.246, 3.14]
-            @test CaosDB.Entity.get_value(bool_list_prop) === [true, false]
+            @test CaosDB.Entity.get_value(bool_list_prop) == [true, false]
             @test CaosDB.Entity.get_value(string_list_prop) == ["Hello", "World"]
             @test CaosDB.Entity.get_value(ref_list_prop) == ["some_id", "another_id"]
             @test isa(CaosDB.Entity.get_value(int_list_prop), Vector{Clong})
-- 
GitLab