Skip to content

Commit

Permalink
Fix test.
Browse files Browse the repository at this point in the history
  • Loading branch information
frozenlib committed Jan 23, 2025
1 parent f0f801b commit e31e0d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/mlflow_client/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ fn log_batch() -> Result<()> {
];
c.log_batch(&r1.run.info.run_id, &metrics, &params, &tags)?;
let mut r2 = c.get_run(&r1.run.info.run_id)?;
r2.run.data.params.sort();
r2.run.data.metrics.sort();
metrics.sort();
assert_eq!(&r2.run.data.metrics, &metrics);
r2.run.data.params.sort();
Expand Down

0 comments on commit e31e0d0

Please sign in to comment.