diff options
author | Tristan Sloughter <tristan.sloughter@gmail.com> | 2014-07-25 12:24:43 -0500 |
---|---|---|
committer | Tristan Sloughter <tristan.sloughter@gmail.com> | 2014-07-25 12:24:43 -0500 |
commit | 148416d0cc59478a98e923496313ed50350d3ce5 (patch) | |
tree | 76fc3fc9e6f745baa3f4d86a1c9c55cfb49c9b7d /src | |
parent | 3b0f9163816c30e8f650295dd3c85535363bc20f (diff) | |
parent | e9fcd11ccc8290919405fb42a9a5c055284d8922 (diff) |
Merge pull request #330 from tuncer/experimental-tests
Remove experimental label from 'eunit tests='
Diffstat (limited to 'src')
-rw-r--r-- | src/rebar_eunit.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rebar_eunit.erl b/src/rebar_eunit.erl index a5b7b00..39dd35d 100644 --- a/src/rebar_eunit.erl +++ b/src/rebar_eunit.erl @@ -242,7 +242,7 @@ get_suites(Config) -> end. get_qualified_and_unqualified_tests(Config) -> - RawFunctions = rebar_utils:get_experimental_global(Config, tests, ""), + RawFunctions = rebar_config:get_global(Config, tests, ""), FunctionNames = [FunctionName || FunctionName <- string:tokens(RawFunctions, ",")], get_qualified_and_unqualified_tests1(FunctionNames, [], []). |