reorder args to the various vec, option fns so blk comes last

This commit is contained in:
Niko Matsakis
2011-12-16 06:27:50 -08:00
parent 0a3626161d
commit 2833ca478c
37 changed files with 170 additions and 169 deletions

View File

@@ -276,7 +276,7 @@ fn filter_tests<copy T>(opts: test_opts,
let filter = bind filter_fn(_, filter_str);
vec::filter_map(filter, filtered)
vec::filter_map(filtered, filter)
};
// Maybe pull out the ignored test and unignore them
@@ -292,7 +292,7 @@ fn filter_tests<copy T>(opts: test_opts,
} else { ret option::none; }
};
vec::filter_map(bind filter(_), filtered)
vec::filter_map(filtered, bind filter(_))
};
// Sort the tests alphabetically