diff options
author | Björn Gustavsson <[email protected]> | 2010-10-29 11:42:32 +0200 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2010-10-29 11:42:32 +0200 |
commit | 0af8aefde96691d80fa13a41b878eac0c8f1e9c1 (patch) | |
tree | 1be30cb08736872cfd3f62664c4d67aacf2a0f31 /lib | |
parent | 0deea46ce7491e5d8168d3f3730868556b1ee221 (diff) | |
download | otp-0af8aefde96691d80fa13a41b878eac0c8f1e9c1.tar.gz otp-0af8aefde96691d80fa13a41b878eac0c8f1e9c1.tar.bz2 otp-0af8aefde96691d80fa13a41b878eac0c8f1e9c1.zip |
string_SUITE: Fix copy and paste error in test of string:copies/2
Diffstat (limited to 'lib')
-rw-r--r-- | lib/stdlib/test/string_SUITE.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/stdlib/test/string_SUITE.erl b/lib/stdlib/test/string_SUITE.erl index 3171b87c44..5df3a869d0 100644 --- a/lib/stdlib/test/string_SUITE.erl +++ b/lib/stdlib/test/string_SUITE.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 2004-2009. All Rights Reserved. +%% Copyright Ericsson AB 2004-2010. 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 @@ -240,7 +240,7 @@ copies(Config) when is_list(Config) -> ?line "." = string:copies(".", 1), ?line 30 = length(string:copies("123", 10)), %% invalid arg type - ?line {'EXIT',_} = (catch string:chars("hej", -1)), + ?line {'EXIT',_} = (catch string:copies("hej", -1)), ok. words(suite) -> |