diff options
author | Björn Gustavsson <[email protected]> | 2016-05-10 12:29:41 +0200 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2016-05-13 10:52:25 +0200 |
commit | 747e9cebee47272704342895bc57cf5edd83b550 (patch) | |
tree | cefbbcf942731b498aa041bd68a13df1ada9d775 /lib/compiler/test | |
parent | 6d66e21dd6b1b891f917e86902edaea3ed86a6eb (diff) | |
download | otp-747e9cebee47272704342895bc57cf5edd83b550.tar.gz otp-747e9cebee47272704342895bc57cf5edd83b550.tar.bz2 otp-747e9cebee47272704342895bc57cf5edd83b550.zip |
trycatch_SUITE: Cover the only uncovered line in sys_core_fold
Recent spring cleaning in the test suite left a line in sys_core_fold
dealing with an unnecessary catch uncovered.
Diffstat (limited to 'lib/compiler/test')
-rw-r--r-- | lib/compiler/test/trycatch_SUITE.erl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/compiler/test/trycatch_SUITE.erl b/lib/compiler/test/trycatch_SUITE.erl index f7ad78cb8d..a591d6cc93 100644 --- a/lib/compiler/test/trycatch_SUITE.erl +++ b/lib/compiler/test/trycatch_SUITE.erl @@ -1034,6 +1034,9 @@ grab_bag(_Config) -> end end, + %% Unnecessary catch. + 22 = (catch 22), + ok. |