aboutsummaryrefslogtreecommitdiffstats
path: root/nihav-core
diff options
context:
space:
mode:
authorKostya Shishkov <kostya.shishkov@gmail.com>2019-03-12 15:48:23 +0100
committerKostya Shishkov <kostya.shishkov@gmail.com>2019-03-12 15:48:53 +0100
commit1678d59a37c619e7a3a2604f4bd23bb10c1769f6 (patch)
tree762c69fe4b8cebc91bc48ff9bd8ecba9f214406f /nihav-core
parent009a04a99f0f0c8a2084f7ea8168a07c660b760e (diff)
downloadnihav-1678d59a37c619e7a3a2604f4bd23bb10c1769f6.tar.gz
move test files into subdirectories
Diffstat (limited to 'nihav-core')
-rw-r--r--nihav-core/src/io/byteio.rs2
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);