Browse Source

fix testing of scalar decoding

Julius Pfrommer 10 years ago
parent
commit
a2b5f434b6
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/check_memory.c

+ 1 - 1
tests/check_memory.c

@@ -189,7 +189,7 @@ int main(void) {
 	suite_add_tcase(s, tc);
 
 	tc = tcase_create("Fuzzing with Random Buffers");
-	tcase_add_loop_test(tc, decodeScalarBasicTypeFromRandomBufferShallSucceed, UA_TYPES_BOOLEAN, UA_TYPES_GUID);
+	tcase_add_loop_test(tc, decodeScalarBasicTypeFromRandomBufferShallSucceed, UA_TYPES_BOOLEAN, UA_TYPES_DOUBLE);
 	tcase_add_loop_test(tc, decodeComplexTypeFromRandomBufferShallSurvive, UA_TYPES_NODEID, UA_TYPES_EVENTNOTIFICATIONLIST);
 	suite_add_tcase(s, tc);