From d4b7e967b6dc0c4b971cbb3b5444c7fbe93a3f86 Mon Sep 17 00:00:00 2001 From: Koichi Sasada Date: Fri, 8 Jan 2021 14:44:26 +0900 Subject: should use `assert_include` here. Random ordering test can introduce antoher candidate so it should be `assert_include`. --- test/irb/test_completion.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/irb/test_completion.rb') 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 -- cgit v1.2.3