diff options
author | Raimo Niskanen <[email protected]> | 2016-02-25 15:12:48 +0100 |
---|---|---|
committer | Raimo Niskanen <[email protected]> | 2016-02-25 15:12:48 +0100 |
commit | edc94441562b255467773ec27b11835910a708fd (patch) | |
tree | 33f0a17084a80b3af639b43872cf84c459195cad /lib/stdlib/test/gen_statem_SUITE.erl | |
parent | e1bbf6f1a081ff41d3287a468450bef5f65ea4ad (diff) | |
download | otp-edc94441562b255467773ec27b11835910a708fd.tar.gz otp-edc94441562b255467773ec27b11835910a708fd.tar.bz2 otp-edc94441562b255467773ec27b11835910a708fd.zip |
Remove {keep_state_and_data}
Correct typo reported by Luïc Hoguin.
Diffstat (limited to 'lib/stdlib/test/gen_statem_SUITE.erl')
-rw-r--r-- | lib/stdlib/test/gen_statem_SUITE.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/stdlib/test/gen_statem_SUITE.erl b/lib/stdlib/test/gen_statem_SUITE.erl index 27b042c0d8..f5cbdd9a40 100644 --- a/lib/stdlib/test/gen_statem_SUITE.erl +++ b/lib/stdlib/test/gen_statem_SUITE.erl @@ -1233,7 +1233,7 @@ wfor_conf(Type, Content, Data) -> {next_state,idle,Data, [{reply,From,'eh?'}]}; _ -> - throw({keep_state_and_data}) + throw({keep_state_and_data,[]}) end; Result -> Result |