From 86b3528fb2ff13db4a442fcc9b02a4c117bf622f Mon Sep 17 00:00:00 2001 From: Spencer Alger Date: Thu, 6 Feb 2014 12:49:03 -0700 Subject: [PATCH] fixed file glob for the integration tests --- grunt/config/mochacov.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grunt/config/mochacov.js b/grunt/config/mochacov.js index a6f6302d4..76a1c12e9 100644 --- a/grunt/config/mochacov.js +++ b/grunt/config/mochacov.js @@ -31,7 +31,7 @@ var config = { utils.branches.forEach(function (branch) { config['integration_' + branch] = { - src: 'test/integration/yaml_suite/index' + _.snakeCase(branch) + '.js' + src: 'test/integration/yaml_suite/index_' + _.snakeCase(branch) + '.js' }; });