HBASE-726 Unit tests won't run because of a typo

git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@674644 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2008-07-07 21:19:18 +00:00
parent 1f93bb5708
commit 20f56cc97d
2 changed files with 2 additions and 1 deletions

View File

@ -168,6 +168,7 @@ Trunk (unreleased changes)
and HConnectionManager (Jean-Daniel Cryans via Stack)
HBASE-703 Invalid regions listed by regionserver.jsp (Izaak Rubin via Stack)
HBASE-674 Memcache size unreliable
HBASE-726 Unit tests won't run because of a typo (Sebastien Rainville via Stack)
IMPROVEMENTS
HBASE-559 MR example job to count table rows

View File

@ -112,7 +112,7 @@ public abstract class HBaseTestCase extends TestCase {
protected void setUp() throws Exception {
super.setUp();
localfs =
(conf.get("fs.default.name", "file:///").compareTo("file::///") == 0);
(conf.get("fs.default.name", "file:///").compareTo("file:///") == 0);
if (fs == null) {
this.fs = FileSystem.get(conf);