When filtering spec, match against the full name of the spec

This commit is contained in:
Dan Hansen
2013-02-22 14:36:46 -08:00
parent 10b09ea9f5
commit e682d18387

View File

@@ -76,7 +76,7 @@
});
env.specFilter = function(spec) {
return specFilter.matches(spec);
return specFilter.matches(spec.getFullName());
};
var currentWindowOnload = window.onload;