diff options
author | Hans Bolinder <[email protected]> | 2016-02-08 08:23:39 +0100 |
---|---|---|
committer | Hans Bolinder <[email protected]> | 2016-02-08 08:23:39 +0100 |
commit | 45fa29af9556d5cb9feed7cfb662486efd1442ea (patch) | |
tree | 1f4f7d5704f0d4e626ff738674ea2d88a8b921c3 /lib | |
parent | 31be395e8fb051985e18ad1c938490e67414877a (diff) | |
parent | e280686680fddb487f30c73d668091d68764f076 (diff) | |
download | otp-45fa29af9556d5cb9feed7cfb662486efd1442ea.tar.gz otp-45fa29af9556d5cb9feed7cfb662486efd1442ea.tar.bz2 otp-45fa29af9556d5cb9feed7cfb662486efd1442ea.zip |
Merge branch 'maint'
* maint:
tools: Correct a Cover test
Diffstat (limited to 'lib')
-rw-r--r-- | lib/tools/test/cover_SUITE.erl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/tools/test/cover_SUITE.erl b/lib/tools/test/cover_SUITE.erl index 8264747a3b..71570a55fa 100644 --- a/lib/tools/test/cover_SUITE.erl +++ b/lib/tools/test/cover_SUITE.erl @@ -1549,7 +1549,7 @@ comprehension_8188(Cf) -> %% The template cannot have a counter since it is not allowed to %% be a block. - ?line [% {{t,1},1}, + ?line [{{t,1},1}, %% {{t,2},2}, {{t,3},1}, {{t,4},1}, @@ -1559,7 +1559,7 @@ comprehension_8188(Cf) -> {{t,12},3}, {{t,13},2}, {{t,14},2}] = - analyse_expr(<<"<< \n" % 1 (now: 0) + analyse_expr(<<"<< \n" % 1 " << (X*2) >> || \n" % 2 (now: 0) " <<X>> <= << (case two() of\n" " 2 -> 1;\n" % 1 @@ -1574,7 +1574,7 @@ comprehension_8188(Cf) -> " true >>.\n" % 2 "two() -> 2">>, Cf), - ?line [% {{t,1},1}, + ?line [{{t,1},1}, %% {{t,2},4}, {{t,4},1}, {{t,6},1}, @@ -1583,7 +1583,7 @@ comprehension_8188(Cf) -> {{t,11},2}, {{t,12},4}, {{t,13},1}] = - analyse_expr(<<"<< \n" % 1 (now: 0) + analyse_expr(<<"<< \n" % 1 " << (2)\n" % 4 (now: 0) " :(8) >> || \n" " <<X>> <= << 1,\n" % 1 |