Skip to content

Commit 7338df2

Browse files
committed
Fix variable names in test
1 parent 48895af commit 7338df2

File tree

1 file changed

+3
-3
lines changed
  • rust/operator-binary/src/config

1 file changed

+3
-3
lines changed

rust/operator-binary/src/config/jvm.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -165,10 +165,10 @@ mod tests {
165165
- -Xmx40000m
166166
- -Dhttps.proxyPort=1234
167167
"#;
168-
let (kafka_role, role, merged_config) = construct_boilerplate(input);
168+
let (merged_config, role, role_group) = construct_boilerplate(input);
169169
let non_heap_jvm_args =
170-
construct_non_heap_jvm_args(&kafka_role, &role, &merged_config).unwrap();
171-
let heap_jvm_args = construct_heap_jvm_args(&kafka_role, &role, &merged_config).unwrap();
170+
construct_non_heap_jvm_args(&merged_config, &role, &role_group).unwrap();
171+
let heap_jvm_args = construct_heap_jvm_args(&merged_config, &role, &role_group).unwrap();
172172

173173
assert_eq!(
174174
non_heap_jvm_args,

0 commit comments

Comments
 (0)