Rename test so that both "kills-loans" tests match names

This commit is contained in:
lqd 2019-07-15 18:51:55 +02:00
parent 9bd9b0d9bf
commit 606f7984e7
2 changed files with 2 additions and 1 deletions

View file

@ -10,7 +10,8 @@
use std::{io, mem};
use std::io::Read;
fn fill(r: &mut Read, mut buf: &mut [u8]) -> io::Result<()> {
#[allow(dead_code)]
fn fill(r: &mut dyn Read, mut buf: &mut [u8]) -> io::Result<()> {
while buf.len() > 0 {
match r.read(buf).unwrap() {
0 => return Err(io::Error::new(io::ErrorKind::Other,