diff options
author | Koichi Sasada <ko1@atdot.net> | 2021-01-08 14:44:26 +0900 |
---|---|---|
committer | Koichi Sasada <ko1@atdot.net> | 2021-01-08 14:44:26 +0900 |
commit | d4b7e967b6dc0c4b971cbb3b5444c7fbe93a3f86 (patch) | |
tree | d6611ae4065e93e4016efa442b84b8c6802ea5ca | |
parent | abdc634f64a440afcdc7f23c9757d27aab4db8a9 (diff) |
should use `assert_include` here.
Random ordering test can introduce antoher candidate so it should be
`assert_include`.
-rw-r--r-- | test/irb/test_completion.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/irb/test_completion.rb b/test/irb/test_completion.rb index 39d4be4a5a..984453d059 100644 --- a/test/irb/test_completion.rb +++ b/test/irb/test_completion.rb @@ -50,7 +50,7 @@ module TestIRB def test_complete_predicate? candidates = IRB::InputCompletor.retrieve_completion_data("1.posi", bind: binding) - assert_equal %w[1.positive?], candidates + assert_include candidates, '1.positive?' namespace = IRB::InputCompletor.retrieve_completion_data("1.positive?", bind: binding, doc_namespace: true) assert_equal "Integer.positive?", namespace |