Skip to content

Commit c5d004d

Browse files
authored
test: relax stable abi exports count assertion
1 parent ae02998 commit c5d004d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ mod tests {
356356
fn parse_stable_abi_txt() {
357357
let stable_abi_exports = parse_stable_abi_defs(STABLE_ABI_DEFS);
358358

359-
assert_eq!(stable_abi_exports.len(), 859);
359+
assert!(stable_abi_exports.len() >= 859);
360360
// assert_eq!(stable_abi_exports.capacity(), 1526);
361361

362362
let data_sym_num = stable_abi_exports.iter().filter(|x| x.is_data).count();

0 commit comments

Comments
 (0)