fix: Fix incorrect ouput in gfdiv task

This commit is contained in:
Alivecow 2024-11-29 17:22:47 +01:00
parent 12254744d4
commit 007bbddfcd

View file

@ -105,7 +105,7 @@ pub fn task_deploy(testcase: &Testcase) -> Result<Value> {
}
"gfdiv" => {
let result = gfdiv(args)?;
let out = BASE64_STANDARD.encode(result);
let out = result.to_b64();
let json = json!({"q" : out});
Ok(json)