Skip to content

Commit c0a7784

Browse files
committed
test: fix an expected result about RemoteTest#test_send
This PR fixed the following test. ``` Failure: test_send(RemoteTest) /home/runner/work/rroonga/rroonga/tmp/test/test-remote.rb:97:in `test_send' 94: values = JSON.load(result) 95: values.delete("apache_arrow") 96: values.delete("features") => 97: assert_equal([ 98: "alloc_count", 99: "cache_hit_rate", 100: "command_version", <["alloc_count", "cache_hit_rate", "command_version", "default_command_version", "max_command_version", "memory_map_size", "n_jobs", "n_queries", "start_time", "starttime", "uptime", "version"]> expected but was <["alloc_count", "cache_hit_rate", "command_version", "default_command_version", "default_n_workers", "max_command_version", "memory_map_size", "n_jobs", "n_queries", "n_workers", "start_time", "starttime", "uptime", "version"]> diff: ["alloc_count", "cache_hit_rate", "command_version", "default_command_version", + "default_n_workers", "max_command_version", "memory_map_size", "n_jobs", "n_queries", + "n_workers", "start_time", "starttime", "uptime", "version"] ```
1 parent ee904a2 commit c0a7784

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

test/test-remote.rb

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,11 +98,15 @@ def test_send
9898
"alloc_count",
9999
"cache_hit_rate",
100100
"command_version",
101+
"cpu",
101102
"default_command_version",
103+
"default_n_workers",
102104
"max_command_version",
103105
"memory_map_size",
104106
"n_jobs",
105107
"n_queries",
108+
"n_workers",
109+
"os",
106110
"start_time",
107111
"starttime",
108112
"uptime",

0 commit comments

Comments
 (0)