fix: Fix incorrect ouput in gfdiv task
This commit is contained in:
parent
12254744d4
commit
007bbddfcd
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue