From d332636dd4f5925ed339adbf46e2b7f6ccb847bb Mon Sep 17 00:00:00 2001 From: Jordan Petridis Date: Fri, 6 Apr 2018 19:36:52 +0300 Subject: [PATCH] Fix the fix that should have fixed the tests. --- hammond-data/src/models/source.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hammond-data/src/models/source.rs b/hammond-data/src/models/source.rs index 4deed3a..0d09e91 100644 --- a/hammond-data/src/models/source.rs +++ b/hammond-data/src/models/source.rs @@ -269,7 +269,7 @@ mod tests { let source = Source::from_url(url).unwrap(); let id = source.id(); - let feed = source.into_feed(&client, pool.clone(), true); + let feed = source.into_feed(&client, true); let feed = core.run(feed).unwrap(); let expected = get_feed("tests/feeds/2018-01-20-Intercepted.xml", id);