diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2019-03-12 15:48:23 +0100 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2019-03-12 15:48:53 +0100 |
commit | 1678d59a37c619e7a3a2604f4bd23bb10c1769f6 (patch) | |
tree | 762c69fe4b8cebc91bc48ff9bd8ecba9f214406f /nihav-core/src | |
parent | 009a04a99f0f0c8a2084f7ea8168a07c660b760e (diff) | |
download | nihav-1678d59a37c619e7a3a2604f4bd23bb10c1769f6.tar.gz |
move test files into subdirectories
Diffstat (limited to 'nihav-core/src')
-rw-r--r-- | nihav-core/src/io/byteio.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nihav-core/src/io/byteio.rs b/nihav-core/src/io/byteio.rs index 880e89b..286a117 100644 --- a/nihav-core/src/io/byteio.rs +++ b/nihav-core/src/io/byteio.rs @@ -626,7 +626,7 @@ mod test { assert_eq!(reader.read_u24le().unwrap(), 0x010101u32); assert_eq!(reader.read_u32le().unwrap(), 0x01010101u32); assert_eq!(reader.read_u64le().unwrap(), 0x0101010101010101u64); - let mut file = File::open("assets/MaoMacha.asx").unwrap(); + let mut file = File::open("assets/Misc/MaoMacha.asx").unwrap(); let mut fr = FileReader::new_read(&mut file); let mut br2 = ByteReader::new(&mut fr); assert_eq!(br2.read_byte().unwrap(), 0x30); |