diff --git a/test/runtests.jl b/test/runtests.jl index a296adde8ad1418f5f2256d0635a9c16e5661376..18fe07ff0de32d16a9d9fbd66fcbd189ee76bf2c 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})