Remove memory cache, file watcher.

This commit is contained in:
Young Hahn
2011-11-10 15:26:47 -05:00
parent 71d683d454
commit 599c519447
2 changed files with 6 additions and 51 deletions

View File

@@ -53,7 +53,6 @@ exports['test file reloading during copying'] = function(beforeExit) {
var returned = 0;
tiles.forEach(function(c) {
mbtiles.getTile(c[0], c[1], c[2], function(err, tile) {
if (++returned === tiles.length) mbtiles._close();
if (err) assert.ok(false, "Couldn't load tile " + c[0] + '/' + c[1] + '/' + c[2]);
else status.success++;
});
@@ -106,4 +105,4 @@ exports['test file reloading during copying'] = function(beforeExit) {
assert.equal(status.error, 11);
assert.equal(status.success, 11);
});
};
};