diff options
author | Björn Gustavsson <[email protected]> | 2011-02-23 13:33:34 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2011-02-23 13:33:34 +0100 |
commit | 9726d9798b0c41ba2126e55e64c5913873116218 (patch) | |
tree | bbcff91b35d343b0bdd1a594bd8dc4d0cd35ace4 /lib/stdlib/test/stdlib_SUITE.erl | |
parent | c347415765f4e30e38e49f5bd369f48523ef935e (diff) | |
download | otp-9726d9798b0c41ba2126e55e64c5913873116218.tar.gz otp-9726d9798b0c41ba2126e55e64c5913873116218.tar.bz2 otp-9726d9798b0c41ba2126e55e64c5913873116218.zip |
stdlib tests: Eliminate some compiler warnings
Diffstat (limited to 'lib/stdlib/test/stdlib_SUITE.erl')
-rw-r--r-- | lib/stdlib/test/stdlib_SUITE.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/stdlib/test/stdlib_SUITE.erl b/lib/stdlib/test/stdlib_SUITE.erl index f46493a2d8..0cca030b3d 100644 --- a/lib/stdlib/test/stdlib_SUITE.erl +++ b/lib/stdlib/test/stdlib_SUITE.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 1997-2010. All Rights Reserved. +%% Copyright Ericsson AB 1997-2011. All Rights Reserved. %% %% The contents of this file are subject to the Erlang Public License, %% Version 1.1, (the "License"); you may not use this file except in @@ -75,7 +75,7 @@ app_test(suite) -> []; app_test(doc) -> ["Application consistency test."]; -app_test(Config) when list(Config) -> +app_test(Config) when is_list(Config) -> ?t:app_test(stdlib), ok. |