fix: Fix incorrect naming of response json object for monic

This commit is contained in:
Alivecow 2024-11-23 09:44:47 +01:00
parent 1290adcd9b
commit b595276143

View file

@ -135,7 +135,7 @@ pub fn task_deploy(testcase: &Testcase) -> Result<Value> {
}
"gfpoly_make_monic" => {
let result = gfpoly_make_monic(args)?;
let json = json!({"S" : result.to_c_array()});
let json = json!({"A*" : result.to_c_array()});
Ok(json)
}