diff --git a/inventory_provider/tasks/worker.py b/inventory_provider/tasks/worker.py
index 66321d66b82efc5fdc9510ff163b7ab7760e7466..56e0d44a85a14e5d42d89838b0f5bcffee4b3e2e 100644
--- a/inventory_provider/tasks/worker.py
+++ b/inventory_provider/tasks/worker.py
@@ -263,7 +263,7 @@ def reload_router_config(hostname):
     netconf_refresh_config.apply(hostname)
 
     netconf_doc = load_netconf_data(hostname)
-    if not netconf_doc:
+    if netconf_doc is None:
         task_logger.error('no netconf data available for %r' % hostname)
     else:
 
diff --git a/test/per_router/test_ix_public_peers.py b/test/per_router/test_peer_caching.py
similarity index 100%
rename from test/per_router/test_ix_public_peers.py
rename to test/per_router/test_peer_caching.py