Repository: incubator-blur Updated Branches: refs/heads/master da0dde4a1 -> 17ccb8990
Fix to unit test. Project: http://git-wip-us.apache.org/repos/asf/incubator-blur/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-blur/commit/17ccb899 Tree: http://git-wip-us.apache.org/repos/asf/incubator-blur/tree/17ccb899 Diff: http://git-wip-us.apache.org/repos/asf/incubator-blur/diff/17ccb899 Branch: refs/heads/master Commit: 17ccb89900cd057b57d52c8d8bd46ccb3482c26b Parents: da0dde4 Author: Aaron McCurry <[email protected]> Authored: Wed Oct 29 06:24:02 2014 -0400 Committer: Aaron McCurry <[email protected]> Committed: Wed Oct 29 06:24:02 2014 -0400 ---------------------------------------------------------------------- .../java/org/apache/blur/manager/writer/IndexImporterTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/17ccb899/blur-core/src/test/java/org/apache/blur/manager/writer/IndexImporterTest.java ---------------------------------------------------------------------- diff --git a/blur-core/src/test/java/org/apache/blur/manager/writer/IndexImporterTest.java b/blur-core/src/test/java/org/apache/blur/manager/writer/IndexImporterTest.java index 18349f9..28b0d21 100644 --- a/blur-core/src/test/java/org/apache/blur/manager/writer/IndexImporterTest.java +++ b/blur-core/src/test/java/org/apache/blur/manager/writer/IndexImporterTest.java @@ -76,6 +76,7 @@ public class IndexImporterTest { @Before public void setup() throws IOException { + _timer = new Timer("Index Importer", true); TableContext.clear(); _configuration = new Configuration(); _base = new Path(TMPDIR, "blur-index-importer-test"); @@ -83,7 +84,6 @@ public class IndexImporterTest { _fileSystem.delete(_base, true); _fileSystem.mkdirs(_base); setupWriter(_configuration); - _timer = new Timer("Index Importer", true); } private void setupWriter(Configuration configuration) throws IOException {
