From e682d1838762a7155d3748ae6469c55c7e523a56 Mon Sep 17 00:00:00 2001 From: Dan Hansen Date: Fri, 22 Feb 2013 14:36:46 -0800 Subject: [PATCH] When filtering spec, match against the full name of the spec --- lib/jasmine-core/boot/boot.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/jasmine-core/boot/boot.js b/lib/jasmine-core/boot/boot.js index 8ca1a484..6ae4dcdb 100644 --- a/lib/jasmine-core/boot/boot.js +++ b/lib/jasmine-core/boot/boot.js @@ -76,7 +76,7 @@ }); env.specFilter = function(spec) { - return specFilter.matches(spec); + return specFilter.matches(spec.getFullName()); }; var currentWindowOnload = window.onload;