Skip to content

Commit

Permalink
fix(tests): update file paths in integration tests
Browse files Browse the repository at this point in the history
- Changed the file paths in `integration_test.rs` to reflect
  the actual names of the test result files for better clarity
  and consistency in testing procedures.
- Updated paths from 'bbb_new_sheet_value.xlsx' to
  'three_digit_hex_color_with_hash.xlsx' and
  'three_digit_hex_color_without_hash.xlsx' for the
  respective integration tests.
  • Loading branch information
mxsrm committed Dec 31, 2024
1 parent b54a83c commit 0e551f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/integration_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -800,7 +800,7 @@ fn three_digit_hex_color_with_hash() {
style.set_background_color(BG_COLOR);
sheet.set_style_by_range("A3:A4", &style);

let path = std::path::Path::new("./tests/result_files/bbb_new_sheet_value.xlsx");
let path = std::path::Path::new("./tests/result_files/three_digit_hex_color_with_hash.xlsx");
let _unused = writer::xlsx::write(&book, path);

let mut book = reader::xlsx::lazy_read(path).unwrap();
Expand Down Expand Up @@ -857,7 +857,7 @@ fn three_digit_hex_color_without_hash() {
style.set_background_color(BG_COLOR);
sheet.set_style_by_range("A3:A4", &style);

let path = std::path::Path::new("./tests/result_files/bbb_new_sheet_value.xlsx");
let path = std::path::Path::new("./tests/result_files/three_digit_hex_color_without_hash.xlsx");
let _unused = writer::xlsx::write(&book, path);

let mut book = reader::xlsx::lazy_read(path).unwrap();
Expand Down

0 comments on commit 0e551f6

Please sign in to comment.