diff options
author | Björn Gustavsson <[email protected]> | 2011-03-17 14:38:02 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2011-08-16 08:58:48 +0200 |
commit | 3a7e7db5280dfdc7ef6488fb66a2cf60950ca34c (patch) | |
tree | 3f313ed14ad0b8e6b0c5262521476895b87e822d /lib/debugger/test/bug_SUITE.erl | |
parent | ec77d4e3705bf9edd9542c2a62786a1251c69129 (diff) | |
download | otp-3a7e7db5280dfdc7ef6488fb66a2cf60950ca34c.tar.gz otp-3a7e7db5280dfdc7ef6488fb66a2cf60950ca34c.tar.bz2 otp-3a7e7db5280dfdc7ef6488fb66a2cf60950ca34c.zip |
Eliminate warnings in test suites
Diffstat (limited to 'lib/debugger/test/bug_SUITE.erl')
-rw-r--r-- | lib/debugger/test/bug_SUITE.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/debugger/test/bug_SUITE.erl b/lib/debugger/test/bug_SUITE.erl index a831897dfb..1a7e876329 100644 --- a/lib/debugger/test/bug_SUITE.erl +++ b/lib/debugger/test/bug_SUITE.erl @@ -51,7 +51,7 @@ end_per_group(_GroupName, Config) -> otp2163(doc) -> ["BIF exit reason"]; otp2163(suite) -> []; -otp2163(Config) when list(Config) -> +otp2163(Config) when is_list(Config) -> ?line DataDir = ?config(data_dir, Config), %% First compile and get the expected results: @@ -74,7 +74,7 @@ otp2163(Config) when list(Config) -> otp4845(doc) -> ["BIF not loading and not bug compatible, OTP-4845 OTP-4859"]; otp4845(suite) -> []; -otp4845(Config) when list(Config) -> +otp4845(Config) when is_list(Config) -> ?line DataDir = ?config(data_dir, Config), %% First compile and get the expected results: |