Fixed unit tests under Linux after DCC changes.

This commit is contained in:
skarg
2006-02-13 22:14:03 +00:00
parent c3f87b3ad3
commit a550441f4e
11 changed files with 36 additions and 3 deletions
+2 -2
View File
@@ -739,10 +739,10 @@ void testBACnetApplicationData(Test * pTest)
status = bacapp_parse_application_data(
BACNET_APPLICATION_TAG_DATE,
"5/5/22:1",
"2005/5/22:1",
&value);
ct_test(pTest,status == true);
ct_test(pTest,value.type.Date.year == 5);
ct_test(pTest,value.type.Date.year == 2005);
ct_test(pTest,value.type.Date.month == 5);
ct_test(pTest,value.type.Date.day == 22);
ct_test(pTest,value.type.Date.wday == 1);