summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorKazuki Yamaguchi <k@rhe.jp>2020-04-22 21:46:39 +0900
committerKazuki Yamaguchi <k@rhe.jp>2021-03-16 19:16:10 +0900
commit0c66784602048fb4724e8d37038a0e6799f55d46 (patch)
tree5ba371966ea86b56ede8deab8b5ba6ab6b1d178d /test
parentffc01afc479f93967360995006c61b806208357e (diff)
[ruby/openssl] test/openssl/test_config: fix non-deterministic test case
Sort keys of a section before comparing. The ordering is not part of the API. This can cause a test failure if we use OpenSSL's C implementation. Fixes: 2ad65b5f673f ("config: support .include directive", 2018-08-16) https://github.com/ruby/openssl/commit/259e6fd2dc
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/4275
Diffstat (limited to 'test')
-rw-r--r--test/openssl/test_config.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/openssl/test_config.rb b/test/openssl/test_config.rb
index 9a3a6a8043..a725add264 100644
--- a/test/openssl/test_config.rb
+++ b/test/openssl/test_config.rb
@@ -151,7 +151,7 @@ __EOC__
# Include a file by relative path
c1 = OpenSSL::Config.parse(include_file)
assert_equal(["default", "sec-a", "sec-b", "sec-main"], c1.sections.sort)
- assert_equal(["file-main", "file-a", "file-b"], c1["default"].keys)
+ assert_equal(["file-a", "file-b", "file-main"], c1["default"].keys.sort)
assert_equal({"a" => "123"}, c1["sec-a"])
assert_equal({"b" => "123"}, c1["sec-b"])
assert_equal({"main" => "123", "key_outside_section" => "value_a"}, c1["sec-main"])