diff options
author | Björn Gustavsson <[email protected]> | 2016-04-18 08:24:13 +0200 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2016-04-18 08:25:46 +0200 |
commit | e51364ed716fe373a0f4c6a02ed5d9740428265f (patch) | |
tree | 7d7b4fe25db56d33b5fd952402d99e7d7755a64e /lib/debugger/test/bs_match_misc_SUITE.erl | |
parent | c34e7292ebef7e1111d35951de46877fe79789ae (diff) | |
download | otp-e51364ed716fe373a0f4c6a02ed5d9740428265f.tar.gz otp-e51364ed716fe373a0f4c6a02ed5d9740428265f.tar.bz2 otp-e51364ed716fe373a0f4c6a02ed5d9740428265f.zip |
Eliminate doc and suite clauses
Diffstat (limited to 'lib/debugger/test/bs_match_misc_SUITE.erl')
-rw-r--r-- | lib/debugger/test/bs_match_misc_SUITE.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/debugger/test/bs_match_misc_SUITE.erl b/lib/debugger/test/bs_match_misc_SUITE.erl index c375d267e3..f184e8fc41 100644 --- a/lib/debugger/test/bs_match_misc_SUITE.erl +++ b/lib/debugger/test/bs_match_misc_SUITE.erl @@ -65,7 +65,7 @@ init_per_testcase(_Case, Config) -> end_per_testcase(_Case, _Config) -> ok. -bound_var(doc) -> "Test matching of bound variables."; +%% Test matching of bound variables. bound_var(Config) when is_list(Config) -> ?line ok = bound_var(42, 13, <<42,13>>), ?line nope = bound_var(42, 13, <<42,255>>), @@ -75,7 +75,7 @@ bound_var(Config) when is_list(Config) -> bound_var(A, B, <<A:8,B:8>>) -> ok; bound_var(_, _, _) -> nope. -bound_tail(doc) -> "Test matching of a bound tail."; +%% Test matching of a bound tail. bound_tail(Config) when is_list(Config) -> ?line ok = bound_tail(<<>>, <<13,14>>), ?line ok = bound_tail(<<2,3>>, <<1,1,2,3>>), |