Fix incorrect path after version change in onos-fetch-db

Change-Id: Ibbd1b79664c042ad5b16a831718012b932f0ffbc
diff --git a/tools/test/bin/onos-fetch-db b/tools/test/bin/onos-fetch-db
index 6bf0ad5..9d08f85 100755
--- a/tools/test/bin/onos-fetch-db
+++ b/tools/test/bin/onos-fetch-db
@@ -39,6 +39,6 @@
 for node in $nodes; do
     echo "fetching from ${node}..."
     mkdir -p ${node}
-    scp -p -r $ONOS_USER@[${node}]:$ONOS_INSTALL_DIR/karaf/data/partitions/* ./${node}/
+    scp -p -r $ONOS_USER@[${node}]:$ONOS_INSTALL_DIR/karaf/data/db/partitions/* ./${node}/
 done