[test] use assertNotIn where appropriate
Automatically generated with:
find -name unittest_*.py -o -name test_*.py | xargs sed -i -e 's/assertFalse(\([^,]*\) in \([^,]*\))/assertNotIn(\1, \2)/'
plus revert of a couple false matches.
$(document).ready(function() {
module("air");
test("test 1", function() {
equals(2, 4);
});
test("test 2", function() {
equals('', '45');
equals('1024', '32');
});
module("able");
test("test 3", function() {
same(1, 1);
});
});