summaryrefslogtreecommitdiff
path: root/src/rebar_prv_eunit.erl
diff options
context:
space:
mode:
authoralisdair sullivan <alisdairsullivan@yahoo.ca>2016-12-09 10:52:38 -0800
committerGitHub <noreply@github.com>2016-12-09 10:52:38 -0800
commitca4c7f4f3d80689153d0854a45adb458a2849841 (patch)
tree0a044d7ba7ad53faf68a5f93331d899d52c9687d /src/rebar_prv_eunit.erl
parentffd97718b83debf8263eb4b1a4b7f2b898562a7a (diff)
parentfc12b06d27d0e1df4719a2e38e241f36637d369e (diff)
Merge pull request #1411 from ferd/fix-regex-matches
Fix regex match for ignored file
Diffstat (limited to 'src/rebar_prv_eunit.erl')
-rw-r--r--src/rebar_prv_eunit.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rebar_prv_eunit.erl b/src/rebar_prv_eunit.erl
index 6fdf33e..a9db12e 100644
--- a/src/rebar_prv_eunit.erl
+++ b/src/rebar_prv_eunit.erl
@@ -18,7 +18,7 @@
%% we need to modify app_info state before compile
-define(DEPS, [lock]).
--define(DEFAULT_TEST_REGEX, "^(?!._).*\\.erl\$").
+-define(DEFAULT_TEST_REGEX, "^(?!\\._).*\\.erl\$").
%% ===================================================================
%% Public API