diff options
author | Björn-Egil Dahlberg <[email protected]> | 2016-04-07 16:21:33 +0200 |
---|---|---|
committer | Björn-Egil Dahlberg <[email protected]> | 2016-04-07 16:21:33 +0200 |
commit | 58d3cc32ac36b33c4b634035d53137758bff03d3 (patch) | |
tree | 06e928700c9887977b9486d01101d20294fd1765 /lib/tools | |
parent | e660be75fdaa3d7e98da94194063494ac92ab807 (diff) | |
download | otp-58d3cc32ac36b33c4b634035d53137758bff03d3.tar.gz otp-58d3cc32ac36b33c4b634035d53137758bff03d3.tar.bz2 otp-58d3cc32ac36b33c4b634035d53137758bff03d3.zip |
Fix instruments_SUITE sumblock check
Diffstat (limited to 'lib/tools')
-rw-r--r-- | lib/tools/test/instrument_SUITE.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tools/test/instrument_SUITE.erl b/lib/tools/test/instrument_SUITE.erl index 573625bff7..40d86f3fbb 100644 --- a/lib/tools/test/instrument_SUITE.erl +++ b/lib/tools/test/instrument_SUITE.erl @@ -53,7 +53,7 @@ all() -> N = lists:foldl(fun ({_,_,Size,_}, Sum) -> Size+Sum end, 0, AL), - N =< S3; + true = N =< S3; Other -> ct:fail(Other) end, |