Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Crate features and dependency cleanup #1176

Merged
merged 15 commits into from
Dec 13, 2024
Prev Previous commit
Next Next commit
Rib tests and fixes
  • Loading branch information
vigoo committed Dec 12, 2024
commit 871f2802d7b683d497edf6d6fe79260160fb53b4
2 changes: 1 addition & 1 deletion golem-rib/src/function_name.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1730,7 +1730,7 @@ mod function_name_tests {
])])
.expect("Resource params parsing failed")
.expect("Resource params not found");
let nums = if let Value::Record(nums) = &args[0] {
let nums = if let Value::Record(nums) = &args[0].value {
nums.clone()
} else {
panic!("Expected record")
Expand Down
Loading
Loading