Skip to content

Commit

Permalink
Review fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
spirali committed Jan 25, 2025
1 parent a78848e commit 4e36474
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
5 changes: 4 additions & 1 deletion kompari-html/src/review.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,11 @@ pub fn start_review_server(
report_config: &ReportConfig,
port: u16,
) -> kompari::Result<()> {
let mut report_config = report_config.clone();
report_config.set_review(true);
report_config.set_embed_images(true);
let shared_state = Arc::new(AppState {
report_config: report_config.clone(),
report_config,
diff_builder: diff_builder.clone(),
});
println!("Running at http://localhost:{port}");
Expand Down
1 change: 0 additions & 1 deletion kompari/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ use thiserror::Error;
mod dirdiff;
mod fsutils;
mod imgdiff;
mod testutils;

/// The image type used throughout Kompari.
pub type Image = image::RgbaImage;
Expand Down
2 changes: 0 additions & 2 deletions kompari/src/testutils.rs

This file was deleted.

0 comments on commit 4e36474

Please sign in to comment.