Skip to content

Commit

Permalink
rename folder
Browse files Browse the repository at this point in the history
  • Loading branch information
folkertdev committed Feb 9, 2024
1 parent 344e42c commit dcdc602
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions zlib-rs/src/deflate.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2278,9 +2278,9 @@ mod test {

use std::ffi::{c_char, c_int, c_uint};

const PAPER_100K: &[u8] = include_bytes!("deflate/tests/paper-100k.pdf");
const FIREWORKS: &[u8] = include_bytes!("deflate/tests/fireworks.jpg");
const LCET10: &str = &include_str!("deflate/tests/lcet10.txt");
const PAPER_100K: &[u8] = include_bytes!("deflate/test-data/paper-100k.pdf");
const FIREWORKS: &[u8] = include_bytes!("deflate/test-data/fireworks.jpg");
const LCET10: &str = &include_str!("deflate/test-data/lcet10.txt");

#[test]
fn detect_data_type_basic() {
Expand Down Expand Up @@ -2764,7 +2764,7 @@ mod test {
#[test]
fn read_buf_window_uninitialized() {
// copies more in `read_buf_window` than is initialized at that point
const INPUT: &str = include_str!("deflate/tests/read_buf_window_uninitialized.txt");
const INPUT: &str = include_str!("deflate/test-data/read_buf_window_uninitialized.txt");

fuzz_based_test(
INPUT.as_bytes(),
Expand Down
File renamed without changes
File renamed without changes.
File renamed without changes.

0 comments on commit dcdc602

Please sign in to comment.