freebsd-ports/textproc/bibutils/files/patch-test_intlist__test.c
Tobias Kortkamp e96d90466e textproc/bibutils: Update to 6.6
PR:		230352
Submitted by:	ndowens@yahoo.com (based on)
2019-01-06 09:16:32 +00:00

11 lines
376 B
C

--- test/intlist_test.c.orig 2019-01-06 09:13:07 UTC
+++ test/intlist_test.c
@@ -275,7 +275,7 @@ test_randomize( void )
check_len( &a, 100 );
for ( i=0; i<99; ++i ) {
m = intlist_find( &a, i );
- check( (m>=0&&m<99), "intlist_randomize() shouldn't remove values" );
+ check( (m>=0&&m<=99), "intlist_randomize() shouldn't remove values" );
}
intlist_free( &a );