diff --git a/tests/check_declaration_seal.c b/tests/check_declaration_seal.c
index 8648bf5735c6081dff718dc86d52e6b64bd12169..38cab7997f9ecc5437df53657df368ba99751da2 100644
--- a/tests/check_declaration_seal.c
+++ b/tests/check_declaration_seal.c
@@ -153,7 +153,7 @@ CHEAT_TEST(user_defined_schemas_works,
 
            mstro_cdo cdo;
            cheat_assert(MSTRO_OK ==mstro_cdo_declare("test cdo", MSTRO_ATTR_DEFAULT, &cdo));
-           cheat_assert(MSTRO_OK ==mstro_cdo_attribute_set(cdo, ".maestro.test.t_1", "test value"));
+           cheat_assert(MSTRO_OK ==mstro_cdo_attribute_set(cdo, ".maestro.test.t_1", "test value",true));
            cheat_assert(MSTRO_OK ==mstro_cdo_declaration_seal(cdo));
 
            cheat_assert(MSTRO_OK ==mstro_cdo_offer(cdo));
@@ -181,8 +181,8 @@ CHEAT_TEST(user_defined_schemas_paths,
             cheat_assert(MSTRO_OK == mstro_init("Tests","DECLARE",0));
             mstro_cdo cdo;
             cheat_assert(MSTRO_OK ==mstro_cdo_declare("test cdo", MSTRO_ATTR_DEFAULT, &cdo));
-            cheat_assert(MSTRO_OK ==mstro_cdo_attribute_set(cdo, ".maestro.test.t_1", "test value"));
-            cheat_assert(MSTRO_OK ==mstro_cdo_attribute_set(cdo, ".maestro.benchmark.b_1", "bechmark value"));
+            cheat_assert(MSTRO_OK ==mstro_cdo_attribute_set(cdo, ".maestro.test.t_1", "test value", true));
+            cheat_assert(MSTRO_OK ==mstro_cdo_attribute_set(cdo, ".maestro.benchmark.b_1", "bechmark value", true));
             cheat_assert(MSTRO_OK ==mstro_cdo_declaration_seal(cdo));
 
             cheat_assert(MSTRO_OK ==mstro_cdo_offer(cdo));