Update tests to use the proper api check

This commit is contained in:
Andy Williams 2014-10-21 22:28:12 +01:00
parent a50fd20f06
commit 383bae2def
1 changed files with 2 additions and 2 deletions

View File

@ -26,7 +26,7 @@ START_TEST (elm_code_load_lines)
file = elm_code_open(path);
ck_assert(4 == elm_code_lines_get(file));
ck_assert_uint_eq(4, elm_code_lines_get(file));
elm_code_close(file);
}
END_TEST
@ -38,7 +38,7 @@ START_TEST (elm_code_load_blank_lines)
file = elm_code_open(path);
ck_assert(8 == elm_code_lines_get(file));
ck_assert_uint_eq(8, elm_code_lines_get(file));
elm_code_close(file);
}
END_TEST